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

Site içinde arama yapın
Kategoriler
Read More
Business
What Does a Product Manager Do?
A product manager (PM) wears many hats, acting as a strategist, communicator, and decision-maker...
By Dacey Rankins 2025-08-15 20:31:55 0 6K
Business
What Qualifications Do I Need to Become an Office Administrator?
Becoming an office administrator does not always require a highly specialized degree, but it does...
By Dacey Rankins 2026-04-20 17:31:28 0 2K
Economics
Why do currencies rise and fall?
Currencies are often described as “strong” or “weak,” but those labels...
By Leonard Pokrovski 2026-04-23 17:21:40 0 922
Business
How Do You Manage Building Operations Effectively?
Managing building operations effectively is a core responsibility of facility management and is...
By Dacey Rankins 2026-04-16 15:26:40 0 547
Business
What Skills Do I Need to Start a Startup?
Starting a startup is an exciting yet challenging journey. It requires a combination of skills...
By Dacey Rankins 2025-04-07 17:24:00 0 11K

BigMoney.VIP Powered by Hosting Pokrov