String.prototype.match()

0
7KB

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
Financial Services
The collapse of Silicon Valley bank
The collapse of Silicon Valley Bank: how and why the main bank of techno-startups of Silicon...
Por FWhoop Xelqua 2023-03-15 15:48:02 0 14KB
Business
What Should Be Included in a Business Biography?
A business biography is a professional narrative that showcases a person’s career journey,...
Por Dacey Rankins 2024-12-27 15:58:44 0 9KB
Programming
Azure Pros & Cons
1. PRO - High Availability Unlike other vendors, the Microsoft Azure cloud offers high...
Por Jesse Thomas 2023-06-27 10:36:21 0 10KB
Programming
Python __init__ Method
The __init__ method is the Python equivalent of the C++ constructor in an...
Por Jesse Thomas 2023-03-17 20:19:20 0 7KB
Television
Fox 2 St. Louis. Live TV. USA.
TVI is a Fox-affiliated television station located in St. Louis, Missouri, United States. It...
Por Nikolai Pokryshkin 2022-10-16 09:45:21 0 26KB
image/svg+xml


BigMoney.VIP Powered by Hosting Pokrov