String.prototype.match()

0
12KB

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

Pesquisar
Categorias
Leia mais
Business
What legal requirements are there for fundraising?
Fundraising is a crucial activity for nonprofits, individuals, and organizations looking to raise...
Por Dacey Rankins 2025-03-26 16:23:13 0 16KB
Marketing and Advertising
The 10 Most Common Mistakes to Avoid in Influencer Marketing Campaigns (and How to Fix Them)
Introduction: The Hidden Risks Behind a Powerful Strategy Influencer marketing is now one of the...
Por Dacey Rankins 2025-10-08 18:14:51 0 14KB
Home Improvement
7 Tips to Improve Home Comfort
According to the principles of feng shui, an ancient Eastern practice, it takes very little to...
Por FWhoop Xelqua 2022-09-18 12:26:47 0 44KB
Decision Making and Problem Solving
What are decision-making models?
The Architecture of the Map We walk through the world clutching maps. We are terrified of the...
Por Michael Pokrovski 2026-06-27 14:52:16 0 1KB
Economics
What industries suffer during inflation?
What Industries Suffer During Inflation? Inflation affects nearly every part of the economy, but...
Por Leonard Pokrovski 2026-07-27 20:11:28 0 2KB

BigMoney.VIP Powered by Hosting Pokrov