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
How Far in Advance Do I Need to Book Outdoor Advertising?
One of the most common questions advertisers ask when planning an outdoor campaign is how far in...
από Dacey Rankins 2026-02-03 18:38:19 0 3χλμ.
Business
How Does Mentoring Differ from Coaching?
Mentoring and coaching are both powerful tools for personal and professional development, but...
από Dacey Rankins 2025-07-07 14:33:50 0 7χλμ.
Business
What are the best office management tools?
t arrived with quiet optimism. A new platform—sleek interface, generous feature set, the...
από Dacey Rankins 2026-04-30 17:12:47 0 4χλμ.
Marketing and Advertising
What Makes a Campaign Viral? Understanding Why Some Campaigns Spread and Others Don’t
Introduction Every marketer dreams of creating the next big viral moment — a post, video,...
από Dacey Rankins 2025-11-10 17:29:05 0 5χλμ.
Business
How Do I Write a Good Prospecting Email?
Prospecting emails are one of the most powerful ways to start conversations, book meetings, and...
από Dacey Rankins 2025-12-08 18:51:44 0 8χλμ.

BigMoney.VIP Powered by Hosting Pokrov