String.prototype.match()

0
11K

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]().

Buscar
Categorías
Read More
Wrestling
The Thrill and Tradition of Sports Wrestling
Sports wrestling, a centuries-old discipline, continues to captivate athletes and audiences alike...
By Dacey Rankins 2024-07-15 16:41:11 0 17K
Science Fiction and Fantasy
Back to the Future. (1985)
Marty McFly, a 17-year-old high school student, is accidentally sent 30 years into the past in a...
By Leonard Pokrovski 2022-11-24 18:54:33 0 35K
Programming
Python Asyncio wait_for()
You can wait for an asyncio task or coroutine to complete with a timeout using...
By Jesse Thomas 2023-03-30 21:54:41 0 12K
Office Products
Office Tools
Choosing office suppliesIs it time to stock up on office stationery? Not sure where to start?...
By FWhoop Xelqua 2023-03-25 16:24:05 0 25K
Transgendered
Navigating the Complexities of Transgender Identity: Understanding, Acceptance, and Empowerment
Navigating the Complexities of Transgender Identity: Understanding, Acceptance, and Empowerment...
By Leonard Pokrovski 2024-06-13 09:57:31 0 20K

BigMoney.VIP Powered by Hosting Pokrov