String.prototype.match()

0
11Кб

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

Поиск
Категории
Больше
Programming
Python Dictionary get() Method
With the built-in get() method, you can get the value from retrieving the specific key. If you...
От Jesse Thomas 2023-03-07 22:06:39 0 12Кб
Finance
How Can I Improve My Credit Score?
  How Can I Improve My Credit Score? Your credit score plays a major role in your...
От Leonard Pokrovski 2025-10-02 22:29:15 0 9Кб
Business
Understand Company Culture: A Key to Long-Term Success and Satisfaction
When evaluating a job opportunity, candidates often focus on salary, job title, and...
От Dacey Rankins 2025-06-20 17:09:03 0 7Кб
Photography
Photography
Photography art is the photography-based art of creating a photograph that reflects the creative...
От FWhoop Xelqua 2023-07-13 19:56:40 0 23Кб
Television
Parliament On Demand, Live TV, New Zealand.
Welcome to Parliament on Demand, the home of Parliament TV and all of New Zealand Parliament's...
От Nikolai Pokryshkin 2022-11-11 19:47:53 0 27Кб

BigMoney.VIP Powered by Hosting Pokrov