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
How to Ask For and Use Feedback, Especially in Surveys – Question Design, Analysis, and Follow-Up
Whether you're building a product, leading a team, or managing a service, feedback is essential...
By Dacey Rankins 2025-07-30 11:34:06 0 13K
Business
What Are the Company's Core Values? Ensuring Candidates' Values Align with the Company's Culture
When candidates step into a job interview, they often focus on skills, experience, and...
By Dacey Rankins 2025-06-19 18:45:03 0 14K
Economics
Do Foreign Investments Help Developing Countries?
Do Foreign Investments Help Developing Countries? Foreign investment has become an important...
By Leonard Pokrovski 2026-03-13 22:29:18 0 5K
Arts, Culture and Entertainment
The Prestige. (2006)
After a tragic accident, two stage magicians in 1890s London engage in a battle to create the...
By Leonard Pokrovski 2022-12-03 19:07:47 0 28K
Business
What Challenges Do CEOs Face?
Being a CEO is often seen as the pinnacle of professional success, but the role comes with a...
By Dacey Rankins 2025-06-16 14:58:08 0 7K

BigMoney.VIP Powered by Hosting Pokrov