String.prototype.match()

0
11KB

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
Personal Finance
What Is Budgeting, and Why Is It Important?
What Is Budgeting, and Why Is It Important? Introduction Money is one of the most powerful...
Por Leonard Pokrovski 2025-10-20 16:54:31 0 473
Business
Competitive Intelligence
Competitive Intelligence (abbr. CI) is the collection and processing of data from various sources...
Por Dacey Rankins 2024-07-18 13:11:42 0 13KB
Business
What Is the Viral Coefficient (K-Factor) and How Is It Calculated?
Viral growth has become a defining characteristic of some of the world’s most successful...
Por Dacey Rankins 2025-09-17 10:47:37 0 2KB
Mapas
Armenia on the Babylonian Map
What do we know about the oldest maps of the world that have survived to this day. There are only...
Por FWhoop Xelqua 2022-12-14 13:50:09 0 21KB
Food
Best Foods for Weight Loss
Studies have shown that certain foods can affect appetite, so they may be beneficial for weight...
Por FWhoop Xelqua 2022-09-21 14:00:25 0 29KB

BigMoney.VIP Powered by Hosting Pokrov