String.prototype.match()

0
12Кб

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

Поиск
Категории
Больше
Business
What Other Questions Do Users Often Ask About GA4?
Since the launch of Google Analytics 4 (GA4), many marketers, analysts, and business owners have...
От Dacey Rankins 2025-09-01 09:28:13 0 4Кб
Financial Services
What is a free rider?
Key points A free rider is someone who wants others to pay for a public...
От Mark Lorenzo 2023-05-15 19:26:10 0 12Кб
Business
What is the difference between financial forecasting and budgeting?
In the world of business finance, financial forecasting and budgeting are two essential tools...
От Dacey Rankins 2025-01-10 14:19:37 0 13Кб
Airsoft
A Comprehensive Guide to Airsoft: The Sport, Gear, and Community
Airsoft is an exciting, fast-paced sport that has grown in popularity over the years, attracting...
От Dacey Rankins 2024-11-29 15:09:59 0 14Кб
Business
How much money do I need to start earning passive income?
The idea of earning passive income appeals to many people who dream of financial freedom. But one...
От Dacey Rankins 2025-01-15 13:43:10 0 20Кб

BigMoney.VIP Powered by Hosting Pokrov