String.prototype.match()

0
11KB

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

Rechercher
Catégories
Lire la suite
Arts, Culture and Entertainment
The Prom (2020)
In desperate need of a noble cause to revive their public images and bounce back, self-centred...
Par Leonard Pokrovski 2022-09-26 20:48:09 0 29KB
Business
How Can I Manage Stress and Avoid Burnout?
Stress and burnout are two common challenges many people face in both their personal and...
Par Dacey Rankins 2025-03-18 13:50:17 0 14KB
Personal Finance
What Is the Average Salary for My Job or Industry?
What Is the Average Salary for My Job or Industry? A Practical Guide to Benchmarking Income and...
Par Leonard Pokrovski 2025-11-27 18:52:36 0 6KB
Economics
What Is Opportunity Cost?
What Is Opportunity Cost? Every choice we make comes with a trade-off. When you decide how to...
Par Leonard Pokrovski 2026-01-27 18:49:46 0 2KB
Personal Finance
Do Men and Women Earn the Same Salary?
Do Men and Women Earn the Same Salary? The question of whether men and women earn the same...
Par Leonard Pokrovski 2025-12-02 21:50:17 0 6KB

BigMoney.VIP Powered by Hosting Pokrov