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

Suche
Kategorien
Mehr lesen
Social Issues
Rose Island. (2020)
An idealistic engineer builds his own island off the Italian coast and declares it a nation,...
Von Leonard Pokrovski 2022-10-06 12:58:41 0 30KB
Business and Corporate Finance
What Is the Difference Between a CFO and a CEO?
  What Is the Difference Between a CFO and a CEO? In any successful organization,...
Von Leonard Pokrovski 2026-01-11 05:51:25 0 3KB
Marketing and Advertising
What is Video Marketing? A Strategic Overview for Modern Brands
Introduction In the era of digital dominance, attention is the most valuable commodity. Amid...
Von Dacey Rankins 2025-11-07 18:46:22 0 3KB
Personal Finance
Where Am I Wasting Money?
Where Am I Wasting Money? How to Spot “Leaks” and Inefficiencies in Your Spending...
Von Leonard Pokrovski 2025-11-13 17:26:58 0 3KB
Business
What Is Cold Calling?
Cold calling is one of the oldest sales methods — and still one of the most...
Von Dacey Rankins 2025-12-12 17:05:37 0 3KB

BigMoney.VIP Powered by Hosting Pokrov