String.prototype.match()

0
4K

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

Pesquisar
Categorias
Leia Mais
E-Books
The Rise and Impact of E-books: Revolutionizing Reading in the Digital Age
In the digital age, e-books have transformed the way people read and interact with literature....
Por Dacey Rankins 2024-11-20 16:29:33 0 2K
Financial Services
Aggregate demand and aggregate supply curves
Key points Aggregate supply is the total quantity of output firms will...
Por Mark Lorenzo 2023-03-23 20:00:34 0 7K
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...
Por Dacey Rankins 2024-10-29 15:28:31 0 5K
Guns
Exploring the Recreational Side of Firearms: More than Just Shooting
Exploring the Recreational Side of Firearms: More than Just Shooting Introduction: Firearms have...
Por Leonard Pokrovski 2024-05-09 09:56:54 0 8K
Business
ANALYSIS AS A FUNCTIONAL ELEMENT OF BUSINESS PROCESS MANAGEMENT IN THE ORGANIZATION
The management of the activities of any organization is based on the use of various approaches...
Por Dacey Rankins 2024-09-23 14:52:25 0 7K
image/svg+xml


BigMoney.VIP Powered by Hosting Pokrov