String.prototype.match()

0
12K

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

Căutare
Categorii
Citeste mai mult
Business
Is Entrepreneurship Worth It in 2025?
Entrepreneurship has long been seen as a path to freedom, creativity, and financial success. But...
By Dacey Rankins 2025-03-18 13:56:31 0 13K
Organizations
The Backbone of Sports Excellence: A Look into Sports Organizations
The Backbone of Sports Excellence: A Look into Sports Organizations Sports organizations serve...
By Leonard Pokrovski 2024-07-03 00:17:55 0 29K
История
Взвод. Platoon. (1986)
В сентябре 1967 года куда-то в приграничный район между Вьетнамом и Камбоджей прибыл рядовой...
By Nikolai Pokryshkin 2023-04-16 17:55:42 0 41K
Science Fiction and Fantasy
Avengers: Endgame. (2019)
After the devastating events of Avengers: Infinity War (2018), the universe is in ruins. With the...
By Leonard Pokrovski 2023-01-03 21:03:41 0 35K
Business
How Detailed Should a Startup Biography Be?
When crafting a startup biography, one common question arises: How much detail is too much? The...
By Dacey Rankins 2025-04-19 14:47:47 0 14K

BigMoney.VIP Powered by Hosting Pokrov