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

Buscar
Categorías
Read More
Marketing and Advertising
How Do I Create a Facebook Remarketing Campaign?
Facebook remarketing (also called retargeting) is one of the most powerful tools available for...
By Dacey Rankins 2026-01-21 19:29:04 0 4K
Business
What Are My Financial Projections?
When starting or managing a business, one of the most important aspects to consider is your...
By Dacey Rankins 2025-02-07 16:22:17 0 17K
Moving and Relocating
The Ultimate Guide to Relocating: Tips for a Smooth Move
Relocating can be both an exciting and daunting experience. Whether you’re moving to a new...
By Dacey Rankins 2024-10-29 15:28:31 0 13K
Science Fiction and Fantasy
Star Wars: Episode IV - A New Hope. (1977)
Luke Skywalker joins forces with a Jedi Knight, a cocky pilot, a Wookiee and two droids to save...
By Leonard Pokrovski 2022-11-22 10:13:34 0 30K
Comics
The Fascinating World of Comics: More Than Just Superheroes
Comics have long been a staple of popular culture, captivating readers of all ages and...
By Dacey Rankins 2025-01-20 16:16:11 0 13K

BigMoney.VIP Powered by Hosting Pokrov