String.prototype.match()

0
10K

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 Do Content Creators Earn Money?
Content creation has transformed into a viable career path for millions of individuals, with...
Por Dacey Rankins 2025-02-24 15:58:14 0 12K
Programming
Python Microsoft Store API
The following example demonstrates how to obtain an Azure AD access token that you can...
Por Jesse Thomas 2023-04-25 21:48:29 0 12K
Business
How Startups Can Validate Their Business Ideas
For startups, one of the most crucial steps before launching a product or service is validating...
Por Dacey Rankins 2025-03-21 14:09:25 0 11K
Comics
The Fascinating World of Comics: More Than Just Superheroes
Comics have long been a staple of popular culture, captivating readers of all ages and...
Por Dacey Rankins 2025-01-20 16:16:11 0 10K
Kites
Soaring Through Time: The Art of Recreating Kites
Soaring Through Time: The Art of Recreating Kites From the serene flight of a bird-shaped kite...
Por Leonard Pokrovski 2024-05-11 18:10:30 0 14K

BigMoney.VIP Powered by Hosting Pokrov