String.prototype.match()

0
12KB

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
Cartes
Armenia on the Babylonian Map
What do we know about the oldest maps of the world that have survived to this day. There are only...
Par FWhoop Xelqua 2022-12-14 13:50:09 0 23KB
Business and Corporate Finance
How a CFO Helps With Fundraising, Investor Relations, Forecasting, and Financial Storytelling
How a CFO Helps With Fundraising, Investor Relations, Forecasting, and Financial Storytelling...
Par Leonard Pokrovski 2026-01-14 16:17:56 0 11KB
Productivity
How do I set boundaries between work and personal life?
How Do I Set Boundaries Between Work and Personal Life? In an increasingly connected world, the...
Par Michael Pokrovski 2026-03-26 23:49:18 0 3KB
Programming
Python Autocomplete Plugin
Making a functional program using Python can be stressful since you would need to go back and...
Par Jesse Thomas 2023-01-30 17:07:34 0 13KB
Социальные проблемы
Удалить историю. Delete History. (2020)
Жизнь троих обитателей городка подчинена новейшим технологиям и опутана социальными сетями....
Par Nikolai Pokryshkin 2022-10-15 21:52:58 1 28KB

BigMoney.VIP Powered by Hosting Pokrov