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

Căutare
Categorii
Citeste mai mult
Business
Are There Examples of Well-Crafted Startup Biographies?
Many of the world’s most successful companies have startup stories that read like gripping...
By Dacey Rankins 2025-04-21 18:10:22 0 15K
Alte
Silicon Cowboys. (2016)
Three friends dream up the Compaq portable computer at a Texas diner in 1981, and soon find...
By Leonard Pokrovski 2023-06-09 20:27:47 0 38K
Economics
What Are Developing Countries?
What Are Developing Countries? In today’s global economy, countries are often categorized...
By Leonard Pokrovski 2026-03-11 02:44:48 0 3K
Business
Which Books or Media Detail This CEO’s Biography?
The best way to understand a CEO’s philosophy, achievements, and challenges is often...
By Dacey Rankins 2025-08-14 21:39:13 0 8K
Телевидение
TV BRICS международная сеть. Прямая трансляция.
TV BRICS — это международная медиасеть стран БРИКС с потенциальной аудиторией 3,5 млрд...
By Nikolai Pokryshkin 2022-11-27 21:01:44 0 46K

BigMoney.VIP Powered by Hosting Pokrov