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

Поиск
Категории
Больше
Marketing and Advertising
Why Do Companies Rebrand?
Rebranding is one of the most powerful — and risky — strategies a business can...
От Dacey Rankins 2025-09-25 15:34:46 0 4Кб
Marketing and Advertising
Is AdSense Worth It in 2024 / 2025?
Google AdSense has existed for over two decades and remains one of the most widely used website...
От Dacey Rankins 2025-12-26 18:18:28 0 5Кб
Programming
Ruby Web Scraping
This post covers the main tools and techniques for web scraping in Ruby. We start with an...
От Jesse Thomas 2023-07-07 23:46:23 0 14Кб
Business
Anti-crisis manager: what is it's role in a crisis?
Anti-crisis manager: what is it's role in a crisis?   "I noticed the moment when...
От Leonard Pokrovski 2024-07-18 20:05:58 0 31Кб
Marketing and Advertising
What Are the Risks of Joining an MLM?
Introduction The promise of multilevel marketing (MLM) is seductive: financial freedom, personal...
От Dacey Rankins 2025-10-20 17:07:57 0 6Кб

BigMoney.VIP Powered by Hosting Pokrov