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
Economics
What Is the Difference Between Nominal and Real Values?
What Is the Difference Between Nominal and Real Values? When people talk about money, wages,...
Por Leonard Pokrovski 2026-01-27 18:53:05 0 3K
Economics
What Are Tariffs and Why Are They Used?
What Are Tariffs and Why Are They Used? Tariffs are one of the oldest and most widely used tools...
Por Leonard Pokrovski 2026-04-23 17:15:49 0 1K
Социальные проблемы
Фортуна. Fortuna. (2021)
Фортуна (6 лет) живет со своей матерью в безымянном пригороде. Она проводит время с двумя...
Por Nikolai Pokryshkin 2022-09-14 22:50:15 0 27K
Economics
What Are Developing Countries?
What Are Developing Countries? In today’s global economy, countries are often categorized...
Por Leonard Pokrovski 2026-03-11 02:44:48 0 3K
Guns
The Complex and Controversial World of Guns: A Global Perspective
Guns have played a significant role in shaping human history, from ancient weaponry used for...
Por Dacey Rankins 2024-12-06 15:45:40 0 14K

BigMoney.VIP Powered by Hosting Pokrov