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
Regional
In which country it is easier to do business: TOP-9 directions for entrepreneurs
Relocation of their own business, its opening or expansion is of interest to more and more...
By FWhoop Xelqua 2023-04-07 18:48:04 0 27K
Human Resources
What is Workplace Compliance?
In any organization, maintaining order, fairness, and legality is essential for long-term...
By Dacey Rankins 2026-03-22 14:37:15 0 2K
Business
What Influences Consumer Decisions?
A woman stands frozen in the cereal aisle holding two nearly identical boxes. One costs $4.99....
By Dacey Rankins 2026-05-26 17:07:53 0 524
Marketing and Advertising
Can I Target Specific YouTube Channels or Videos?
Yes, you can target specific YouTube channels or even individual videos when running ads on...
By Dacey Rankins 2026-03-03 17:57:27 0 7K
Business
How Do You Measure Product Success or Innovation ROI?
Measuring product success and innovation return on investment (ROI) is one of the most critical...
By Dacey Rankins 2025-08-19 17:55:35 0 8K

BigMoney.VIP Powered by Hosting Pokrov