String.prototype.match()

0
10KB

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 Should I Structure a Customer Meeting During Customer Development?
Customer Development meetings are a vital part of the process of building a product or service...
Por Dacey Rankins 2025-03-25 15:39:31 0 10KB
Жизненные вопросы
Жить. Ikiru. (1952)
Старик узнаёт, что жить ему осталось недолго и решает, что детская площадка на месте зловонного...
Por Nikolai Pokryshkin 2023-01-19 11:36:02 0 24KB
Home Health
How pet dogs and cats improve human physical and mental health
How pet dogs and cats improve human physical and mental health Pets bring joy, love...
Por Leonard Pokrovski 2024-04-16 19:43:43 0 21KB
Arts, Culture and Entertainment
The Prestige. (2006)
After a tragic accident, two stage magicians in 1890s London engage in a battle to create the...
Por Leonard Pokrovski 2022-12-03 19:07:47 0 23KB
Business
What’s the Transportation / Logistics Problem?
The transportation or logistics problem is a classic type of optimization problem in Management...
Por Dacey Rankins 2025-07-02 15:13:23 0 4KB

BigMoney.VIP Powered by Hosting Pokrov