String.prototype.match()

0
12K

A regular expression object, or any object that has a Symbol.match method.

If regexp is not a RegExp object and does not have a Symbol.match method, it is implicitly converted to a RegExp by using new RegExp(regexp).

If you don't give any parameter and use the match() method directly, you will get an Array with an empty string: [""], because this is equivalent to match(/(?:)/).

Return value

An Array whose contents depend on the presence or absence of the global (g) flag, or null if no matches are found.

  • If the g flag is used, all results matching the complete regular expression will be returned, but capturing groups are not included.
  • If the g flag is not used, only the first complete match and its related capturing groups are returned. In this case, match() will return the same result as RegExp.prototype.exec() (an array with some extra properties).

Description

The implementation of String.prototype.match itself is very simple — it simply calls the Symbol.match method of the argument with the string as the first parameter. The actual implementation comes from RegExp.prototype[@@match]().

For more information about the semantics of match() when a regex is passed, see RegExp.prototype[@@match]().

Pesquisar
Categorias
Leia Mais
Business
How Long Should the Meeting Be?
Finding the Optimal Duration for Productive Conversations Meetings are essential for...
Por Dacey Rankins 2025-07-31 16:53:45 0 10K
Science Fiction and Fantasy
The Terminator. (1984)
A human soldier is sent from 2029 to 1984 to stop an almost indestructible cyborg killing...
Por Leonard Pokrovski 2023-04-28 19:18:14 0 30K
Roleplaying
An Introduction to Roleplaying Games: The Art of Imagination and Adventure
Roleplaying games (RPGs) have captivated generations of players with their immersive worlds,...
Por Dacey Rankins 2024-12-05 14:38:28 0 19K
Economics
Who Invented Capitalism?
Who Invented Capitalism? When people ask, “Who invented capitalism?”, they are...
Por Leonard Pokrovski 2026-02-09 23:54:18 0 3K
Marketing and Advertising
Examples of Strong Brand Positioning: Learning from the Best
Introduction: Why Learning from the Greats Matters Brand positioning is one of the most powerful...
Por Dacey Rankins 2025-10-24 15:59:37 0 9K

BigMoney.VIP Powered by Hosting Pokrov