String.prototype.match()

0
11K

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

Search
Categories
Read More
Marketing and Advertising
What Should My Podcast Be About? How to Pick a Topic or Niche
Introduction: The Foundation of Every Great Podcast Before hitting record or buying your first...
By Dacey Rankins 2025-10-22 15:48:37 0 3K
Programming
The World of Programming: An In-Depth Exploration
Programming is a fundamental skill in today’s digital landscape, shaping the way we...
By Dacey Rankins 2024-10-11 15:46:15 0 24K
Business
What Is Competitive Advantage in Business Strategy?
In today’s fast-paced and competitive business world, the ability to outperform competitors...
By Dacey Rankins 2024-12-25 18:28:06 0 15K
Business
Is There a Market for My Product or Service?
One of the most crucial questions for any entrepreneur or business owner is whether there is a...
By Dacey Rankins 2025-02-05 15:43:56 0 23K
Finance
What Are the Benefits of Fintech?
What Are the Benefits of Fintech? Why Users and Businesses Are Adopting Faster, Cheaper, and...
By Leonard Pokrovski 2025-10-10 22:48:46 0 4K

BigMoney.VIP Powered by Hosting Pokrov