String.prototype.match()

0
4KB

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

Rechercher
Catégories
Lire la suite
Искусство, культура и развлечения
Никто не знает, что я здесь. Nobody Knows I'm Here. (2020)
Мемо Гарридо живет в уединении на чилийской овцеводческой ферме. В прошлом он известный певец,...
Par Nikolai Pokryshkin 2022-10-01 21:08:16 0 15KB
Dictionaries
Exploring the Versatility and Importance of Dictionaries
In the vast landscape of human knowledge and communication, dictionaries stand as pillars of...
Par Dacey Rankins 2024-05-17 18:19:54 0 8KB
Sport
The King of Kong: A Fistful of Quarters (2007)
Die-hard gamers compete to break world records on classic arcade games. My Link
Par Leonard Pokrovski 2023-07-25 19:20:21 0 18KB
Programming
Var vs Let vs Const
Var Before the advent of ES6, var declarations ruled. There are issues associated with...
Par Jesse Thomas 2023-05-12 21:43:30 0 4KB
Law
The Interplay of Society and Law: Navigating the Complex Dynamics
In the intricate dance between society and law, each step influences the other, shaping the...
Par Dacey Rankins 2024-06-10 19:55:49 0 7KB
image/svg+xml


BigMoney.VIP Powered by Hosting Pokrov