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
Social Issues
The Pianist. (2002)
A Polish Jewish musician struggles to survive the destruction of the Warsaw ghetto of World War...
By Leonard Pokrovski 2022-11-26 21:19:41 0 23K
Nature and Science
My Neighbor Totoro. (1988)
When two girls move to the country to be near their ailing mother, they have adventures with the...
By Leonard Pokrovski 2023-03-15 17:30:45 0 29K
Business
What Is Corporate Synergy and Why Is It Important?
A Comprehensive 3,000-Word Guide to Understanding, Measuring, and Leveraging Synergies in Mergers...
By Dacey Rankins 2025-11-27 17:20:49 0 3K
Business
What Role Do Loyalty Programs or Gamification Play in Retention?
Customer acquisition can be expensive, but keeping existing customers engaged is often more...
By Dacey Rankins 2025-09-17 10:41:44 0 5K
Business
Common Techniques Used in Growth Hacking
Growth hacking is all about rapid experimentation, creativity, and leveraging low-cost strategies...
By Dacey Rankins 2025-09-11 16:44:03 0 11K

BigMoney.VIP Powered by Hosting Pokrov