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
Decision Making and Problem Solving
What is the anchoring effect in pricing?
What Is the Anchoring Effect in Pricing? The First Number Changes Everything A customer enters...
By Michael Pokrovski 2026-06-09 05:11:25 0 5K
Business
Is Lean Startup Applicable Only to Tech Companies?
The Lean Startup methodology, popularized by Eric Ries, is often associated with technology...
By Dacey Rankins 2025-03-10 17:25:48 0 16K
Personal Finance
How Do I Save Money for a House Down Payment?
How Do I Save Money for a House Down Payment? Buying a home is one of the biggest financial...
By Leonard Pokrovski 2025-12-05 19:45:25 0 16K
Business
Are There Legal and Regulatory Considerations in Crowdfunding?
Crowdfunding has become an increasingly popular method for raising capital, whether for a new...
By Dacey Rankins 2025-03-28 14:29:49 0 17K
Business and Corporate Finance
What Tools and Software Do CFOs Use?
What Tools and Software Do CFOs Use? ERP Systems, FP&A Tools, Dashboards, and Analytics...
By Leonard Pokrovski 2026-01-14 16:22:08 0 8K

BigMoney.VIP Powered by Hosting Pokrov