String.prototype.match()

0
8χλμ.

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

Αναζήτηση
Κατηγορίες
Διαβάζω περισσότερα
СМИ
Матрица. The Matrix. (1999)
The Matrix, 1999. Фильм изображает будущее, в котором реальность, существующая для большинства...
από Nikolai Pokryshkin 2022-11-12 19:36:27 0 25χλμ.
Business
What Are the Different Types of Influencers?
In the world of social media and digital marketing, influencers play a crucial role in shaping...
από Dacey Rankins 2025-02-27 16:37:34 0 5χλμ.
Financial Services
Supply and its determinants
The law of supply The law of supply states that there is a positive...
από Mark Lorenzo 2023-02-24 17:17:03 0 9χλμ.
Financial Services
Changes in equilibrium price and quantity: the four-step process
Key points There is a four-step process that allows us to predict how an event...
από Mark Lorenzo 2023-02-16 13:07:37 0 16χλμ.
Social Issues
Black Hawk Down (1997)
The story of 160 elite U.S. soldiers who dropped into Mogadishu in October 1993 to capture two...
από Leonard Pokrovski 2023-07-27 15:56:46 0 27χλμ.
image/svg+xml


BigMoney.VIP Powered by Hosting Pokrov