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

Search
Categories
Read More
Contests
Contests
Concursus (Latin concursus - clash, coincidence) is a competition, the competition of several...
By FWhoop Xelqua 2023-06-30 18:07:45 0 24K
Financial Services
Public Service Loan Forgiveness: a path out of student debt
Do you work for a government or nonprofit organization? Or are you considering that career...
By Mark Lorenzo 2023-06-02 20:12:52 0 21K
Marketing and Advertising
How Long Should a Press Release Stay Online, and How Long After Distribution Is It Relevant?
Introduction: The Lifespan of News in a Digital World In the past, news was printed on paper,...
By Dacey Rankins 2025-10-28 17:19:53 0 7K
Mental Health
Dyslexia: classification
Dyslexia is divided into developmental and acquired forms. Acquired dyslexia occurs subsequent to...
By Kelsey Rodriguez 2023-06-13 19:40:50 0 11K
Social Issues
Black Hawk Down (1997)
The story of 160 elite U.S. soldiers who dropped into Mogadishu in October 1993 to capture two...
By Leonard Pokrovski 2023-07-27 15:56:46 0 33K

BigMoney.VIP Powered by Hosting Pokrov