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

Search
Categories
Read More
Business
Is the Workplace Collaborative or Do People Work Independently?
Every workplace operates with a unique rhythm—some thrive on constant collaboration and...
By Dacey Rankins 2025-08-06 10:35:51 0 22K
Business
How Can I Improve My Communication Skills?
Introduction Communication is one of the most fundamental skills in everyday life. Whether you...
By Dacey Rankins 2025-11-20 15:12:28 0 6K
Business
Why Do Growth Rates Mislead?
Growth rates are one of the most common metrics used to describe progress, whether in business,...
By Dacey Rankins 2025-09-09 14:38:42 0 5K
Business
How Do I Overcome Nervousness Before Presenting?
Feeling nervous before presenting is one of the most universal human experiences. Even...
By Dacey Rankins 2025-12-04 16:30:07 0 8K
Business
How Do I Qualify a Sales Lead?
Qualifying sales leads is one of the most important — and most overlooked — skills in...
By Dacey Rankins 2025-12-16 22:47:41 0 7K

BigMoney.VIP Powered by Hosting Pokrov