String.prototype.match()

0
11K

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

Cerca
Categorie
Leggi tutto
Business
How Do You Assess Market Potential?
Assessing market potential is a critical step for any business or entrepreneur aiming to launch a...
By Dacey Rankins 2025-08-19 18:04:14 0 7K
Economics
What Is Commerce?
What Is Commerce? Commerce is the activity of buying and selling goods and services. At its...
By Leonard Pokrovski 2026-02-13 19:13:29 0 1K
Business
How many prospects should I contact per day?
The ideal number depends on your role, industry, and the quality of your leads — but there...
By Dacey Rankins 2025-12-09 17:09:01 0 4K
Business
How Can You Adapt Your Product Strategy to Market Changes?
In today’s fast-moving business environment, even the best product strategies can quickly...
By Dacey Rankins 2025-08-21 16:37:56 0 10K
Business
What Strategies Do You Use to Prioritize Tasks Effectively?
In today’s fast-paced work environment, effective task prioritization is not just a...
By Dacey Rankins 2025-05-14 14:08:18 0 7K

BigMoney.VIP Powered by Hosting Pokrov