String.prototype.match()

0
11K

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

Căutare
Categorii
Citeste mai mult
История
Подводная лодка. The Boat. (1981)
Осень 1941 года. Немецкая подводная лодка отправляется в Атлантический океан - место...
By Nikolai Pokryshkin 2023-01-02 11:00:49 0 22K
Personal Finance
Can I Itemize Deductions or Should I Take the Standard Deduction?
Can I Itemize Deductions or Should I Take the Standard Deduction? Which Is Better for My...
By Leonard Pokrovski 2025-11-21 19:29:25 0 784
Financial Services
Macroeconomics
If you want to sum up what economics means, you could do so with the following statement:...
By Mark Lorenzo 2023-01-24 20:07:42 0 16K
North America
The most beautiful places in North America
North America is the third largest continent on our planet. It stretches from the polar latitudes...
By FWhoop Xelqua 2022-10-27 12:08:35 0 26K
Телевидение
Прямой эфир АСТВ. ТВ онлайн. Сахалин.
Официальный канал медиахолдинга «АСТВ». Круглосуточное теле-вещание. Смотрите...
By Nikolai Pokryshkin 2022-10-17 11:54:27 0 27K

BigMoney.VIP Powered by Hosting Pokrov