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

Zoeken
Categorieën
Read More
Personal Finance
What Should I Do if I Find Errors on My Credit Report?
What Should I Do if I Find Errors on My Credit Report? Your credit report plays a vital role in...
By Leonard Pokrovski 2025-10-23 10:27:19 0 8K
Programming
Golang vs Java
Golang  Launched in 2011, Go or Golang is an open-source language from Google. Similar...
By Jesse Thomas 2023-07-03 17:15:47 0 13K
Reproductive Health
Reproductive Health: Understanding Its Importance for Individuals and Society
Reproductive health is a cornerstone of overall well-being, encompassing a wide range of...
By Dacey Rankins 2024-11-05 15:52:56 0 10K
Marketing and Advertising
Do You Have to Recruit People (Your "Downline") to Earn Income in MLM?
Introduction If you’ve ever been invited to join a multilevel marketing (MLM) opportunity,...
By Dacey Rankins 2025-10-20 17:09:48 0 9K
Mental Health
Understanding Mental Health: Importance, Challenges, and Ways to Improve Well-Being
Mental health is an integral part of overall well-being, influencing how we think, feel, and act....
By Dacey Rankins 2024-11-22 14:53:42 0 13K

BigMoney.VIP Powered by Hosting Pokrov