String.prototype.match()

0
11Кб

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

Поиск
Категории
Больше
Apartment Living
The Pros and Cons of Apartment Living: A Modern Lifestyle Choice
Introduction Apartment living has become a popular choice for many, especially in urban areas...
От Dacey Rankins 2024-10-07 17:33:13 0 19Кб
Life Issues
Rear Window. (1954)
A wheelchair-bound photographer spies on his neighbors from his Greenwich Village courtyard...
От Leonard Pokrovski 2022-12-09 19:36:34 0 29Кб
Marketing and Advertising
Why Should I Use Video Marketing? The Strategic Benefits for Modern Businesses
Introduction In an increasingly digital and visually driven world, video marketing has become...
От Dacey Rankins 2025-11-07 19:35:43 0 653
Nursing
The Vital Role of Nursing: A Pillar of Healthcare
Nursing is a profession that embodies compassion, dedication, and expertise. Nurses are at the...
От Dacey Rankins 2024-11-13 16:20:52 0 11Кб
Телевидение
Прямая трансляция телеканала Москва 24
Городской круглосуточный информационный телеканал «Москва 24». Городские новости в...
От Nikolai Pokryshkin 2022-10-10 11:27:59 0 29Кб

BigMoney.VIP Powered by Hosting Pokrov