String.prototype.match()

0
12Кб

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

Поиск
Категории
Больше
Strength Sports
Unveiling the World of Strength Sports: Power, Precision, and Passion
Unveiling the World of Strength Sports: Power, Precision, and Passion Strength sports have...
От Leonard Pokrovski 2024-07-10 07:58:54 0 24Кб
Business
Do I Need to Be a Programmer to Become an Indie Hacker?
The indie hacker community has grown rapidly in recent years, offering many individuals the...
От Dacey Rankins 2025-02-14 15:39:53 0 18Кб
Productivity
How does meditation improve focus?
How Does Meditation Improve Focus? Meditation is one of the most studied mental training...
От Michael Pokrovski 2026-04-18 06:09:06 0 5Кб
Science Fiction and Fantasy
Interstellar. (2014)
A team of explorers travel through a wormhole in space in an attempt to ensure humanity's...
От Leonard Pokrovski 2022-11-20 21:07:02 0 30Кб
Marketing and Advertising
What Are Common Mistakes in YouTube Advertising?
Advertising on YouTube offers massive reach, sophisticated targeting, and measurable performance....
От Dacey Rankins 2026-03-04 18:28:38 0 7Кб

BigMoney.VIP Powered by Hosting Pokrov