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

Αναζήτηση
Κατηγορίες
Διαβάζω περισσότερα
Business
How Can One Start a Social Enterprise?
Starting a social enterprise is an exciting and impactful way to address critical social or...
από Dacey Rankins 2025-04-16 17:11:35 0 15χλμ.
Personal Finance
How Salary Ranges Work: Minimum, Midpoint, Maximum, and Pay Bands
How Salary Ranges Work: Minimum, Midpoint, Maximum, and Pay Bands Salary ranges are one of the...
από Leonard Pokrovski 2025-11-28 20:56:15 0 8χλμ.
Board Games
Board games of the ancient world
When it comes to board games today, the average person first remembers dominoes and cards (less...
από Michael Pokrovski 2024-04-02 19:06:35 0 23χλμ.
Programming
JavaScript JSON.stringify()
A common use of JSON is to exchange data to/from a web server. When sending data to a web...
από Jesse Thomas 2023-05-10 22:18:01 0 12χλμ.
Искусство, культура и развлечения
Мадам Парфюмер. Perfumes. (2020)
Анна Вальберг — знаменитость в мире парфюмерии. Она живет как дива, ведет себя как эгоистка...
από Nikolai Pokryshkin 2022-09-30 21:26:20 0 30χλμ.

BigMoney.VIP Powered by Hosting Pokrov