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

Site içinde arama yapın
Kategoriler
Read More
Marketing and Advertising
What Are Common Content Marketing Challenges?
How to Identify, Overcome, and Prevent the Obstacles Holding Back Your Content Strategy Content...
By Dacey Rankins 2025-09-30 15:54:43 0 3K
Internet
Google ads Part Two
Part One: Google ads: interface and settings (bigmoney.vip) Search and Display Network The two...
By FWhoop Xelqua 2023-02-01 15:01:27 0 20K
Business
How Should I Give Feedback to Different Roles? (Boss, Peer, Direct Report)
Giving feedback is essential to creating a healthy, productive work environment—but how you...
By Dacey Rankins 2025-07-23 12:24:34 0 4K
Научная фантастика и фэнтези
Звёздные войны. Эпизод VI: Возвращение Джедая. Star Wars: Episode VI - Return of the Jedi. (1983)
В шестом эпизоде «Звездных войн» Дарт Вейдер создает вторую «Звезду...
By Nikolai Pokryshkin 2023-01-08 22:53:53 0 38K
Money
How does a credit card work?
How does a credit card work? Credit cards are one of the most widely used financial tools in the...
By Leonard Pokrovski 2025-09-17 19:47:16 0 4K

BigMoney.VIP Powered by Hosting Pokrov