String.prototype.match()

0
11K

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]().

Search
Categories
Read More
Business
How Do Growth Patterns Differ (Linear vs Exponential)?
When we talk about growth, we often assume it’s just “more” over time. But the...
By Dacey Rankins 2025-09-09 14:29:27 0 3K
Comics
Comics
To help beginners, we publish a list of terms that are used by experienced comic book readers....
By FWhoop Xelqua 2023-06-29 19:58:06 0 29K
Finance
What Are the Fees or Costs Involved in Currency Exchange / Forex Trading?
What Are the Fees or Costs Involved in Currency Exchange / Forex Trading? Foreign exchange, or...
By Leonard Pokrovski 2025-10-17 08:08:48 0 978
Television
TCTKids Live Stream.
TCTKids offers viewers a family-friendly lineup with programs specifically geared to children....
By Nikolai Pokryshkin 2022-11-22 13:24:24 0 34K
Социальные проблемы
Ещё по одной. Another Round. (2020)
В ресторане собираются учитель истории, психологии, музыки и физрук, чтобы отметить 40-летие...
By Nikolai Pokryshkin 2022-10-10 17:38:27 0 30K

BigMoney.VIP Powered by Hosting Pokrov