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

Suche
Kategorien
Mehr lesen
Социальные проблемы
На игле. Trainspotting. (1996)
История четырёх друзей-наркоманов в Эдинбурге 1990-х годов. Кто-то из них пытается завязать, а...
Von Nikolai Pokryshkin 2023-03-09 13:08:57 0 31KB
Arts, Culture and Entertainment
The Prom (2020)
In desperate need of a noble cause to revive their public images and bounce back, self-centred...
Von Leonard Pokrovski 2022-09-26 20:48:09 0 30KB
Social Issues
Six Minutes to Midnight (2020)
UK, Aug. 15, 1939: 17 days before WWII, an English teacher and his camera disappear from a...
Von Leonard Pokrovski 2022-10-11 21:04:03 0 32KB
Business
What Are Common Challenges in Implementing a Business Strategy?
Implementing a business strategy successfully is a fundamental goal for any organization....
Von Dacey Rankins 2024-12-26 13:38:07 0 14KB
Cooking
Easy Bananas Foster Recipe !
Bananas Foster Recipe Easy IngredientsTo make this dessert you'll need: salted butterbrown...
Von FWhoop Xelqua 2023-05-09 17:22:31 0 22KB

BigMoney.VIP Powered by Hosting Pokrov