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
Finance
What Is Debt Consolidation?
What Is Debt Consolidation? Debt consolidation is a financial strategy designed to simplify the...
By Leonard Pokrovski 2025-10-05 19:28:16 0 7K
Business
What Legal Mistakes Do Startup Founders Make?
Starting a business is a thrilling journey, but it comes with a fair share of challenges,...
By Dacey Rankins 2025-04-10 14:54:26 0 12K
Personal Finance
What Happens If I Delay Social Security?
What Happens If I Delay Social Security? Understanding Delayed Retirement Credits and How Much...
By Leonard Pokrovski 2025-12-12 22:27:00 0 7K
Economics
Is Commerce a Good Career Option?
Is Commerce a Good Career Option? Choosing a career stream is one of the first big decisions...
By Leonard Pokrovski 2026-02-20 22:01:14 0 10K
Personal Finance
How Many Credit Cards Should You Have — and How Does a Credit Card Work?
How Many Credit Cards Should You Have — and How Does a Credit Card Work? Credit cards can...
By Leonard Pokrovski 2025-11-19 22:01:18 0 10K

BigMoney.VIP Powered by Hosting Pokrov