String.prototype.match()

0
12KB

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 a Recession?
What Is a Recession? A recession is a period of significant decline in economic activity that...
Por Leonard Pokrovski 2026-01-28 19:47:30 0 3KB
Financial Services
Elasticity and tax revenue
Key points Tax incidence is the manner in which the tax burden is divided...
Por Mark Lorenzo 2023-07-06 20:21:10 0 17KB
Marketing and Advertising
What Is RPM in AdSense?
If you use Google AdSense (or are planning to), RPM is one of the most important metrics...
Por Dacey Rankins 2025-12-25 20:28:10 0 5KB
Business
How to Protect Data in Automated Systems
Automation has transformed the way organizations handle information. Data flows faster, processes...
Por Dacey Rankins 2026-04-28 16:24:19 0 2KB
Marketing and Advertising
Is AdSense Worth It in 2024 / 2025?
Google AdSense has existed for over two decades and remains one of the most widely used website...
Por Dacey Rankins 2025-12-26 18:18:28 0 5KB

BigMoney.VIP Powered by Hosting Pokrov