String.prototype.match()

0
12K

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

Buscar
Categorías
Read More
Handball
The Thrilling World of Handball: A Sport of Skill, Speed, and Strategy
Handball, a dynamic and fast-paced sport, combines the finesse of basketball, the physicality of...
By Dacey Rankins 2024-06-27 14:08:04 0 18K
Marketing and Advertising
How is Copywriting Different From Content Writing?
A Complete Guide to Understanding the Two Pillars of Modern Marketing In the digital age, words...
By Dacey Rankins 2025-09-30 15:59:37 0 5K
Fencing
The Art and Strategy of Sports Fencing: A Blade with Precision
In the realm where athleticism meets precision, sports fencing stands out as a discipline that...
By Dacey Rankins 2024-06-24 19:25:29 0 16K
Business
What’s the Difference Between Microsoft Fabric and Azure?
When Microsoft released Fabric, one of the most common questions was: “Isn’t this...
By Dacey Rankins 2025-09-01 09:37:59 0 6K
Marketing and Advertising
What Role Does Social Media Play in Customer Acquisition?
Social media has evolved from a brand-awareness channel into a powerful engine for customer...
By Dacey Rankins 2026-01-20 17:06:11 0 2K

BigMoney.VIP Powered by Hosting Pokrov