String.prototype.match()

0
12χλμ.

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

Αναζήτηση
Κατηγορίες
Διαβάζω περισσότερα
Economics
When Did Brexit Happen? The Referendum Date and Exit Timeline
When Did Brexit Happen? The Referendum Date and Exit Timeline Brexit, the term used to describe...
από Leonard Pokrovski 2026-01-31 22:39:30 0 4χλμ.
Human Resources
How Do Freelancers Fit Into Outsourcing?
Outsourcing has evolved significantly over the past decade, and one of the biggest drivers of...
από Dacey Rankins 2026-04-07 18:40:07 0 5χλμ.
Mental Health
ADHD: Environment
In addition to genetics, some environmental factors might play a role in causing ADHD. Alcohol...
από Kelsey Rodriguez 2023-04-06 18:00:36 0 14χλμ.
Life Issues
Maleficent. (2014)
A vengeful fairy is driven to curse an infant princess, only to discover that the child may be...
από Leonard Pokrovski 2023-05-03 20:52:38 0 28χλμ.
Научная фантастика и фэнтези
Звёздные войны. Эпизод VI: Возвращение Джедая. Star Wars: Episode VI - Return of the Jedi. (1983)
В шестом эпизоде «Звездных войн» Дарт Вейдер создает вторую «Звезду...
από Nikolai Pokryshkin 2023-01-08 22:53:53 0 47χλμ.

BigMoney.VIP Powered by Hosting Pokrov