String.prototype.match()

0
12χλμ.

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

Αναζήτηση
Κατηγορίες
Διαβάζω περισσότερα
Business
Do I Need a Lawyer to Start a Startup?
Starting a business is an exciting and challenging endeavor, but it also comes with legal...
από Dacey Rankins 2025-04-10 14:51:06 0 18χλμ.
Health
13 gift options for a person leading a healthy lifestyle
Leading a healthy lifestyle has become a fashionable trend among the population of the whole...
από FWhoop Xelqua 2022-10-17 13:05:47 0 46χλμ.
Philanthropy
Understanding Philanthropy: The Art of Giving Back
Understanding Philanthropy: The Art of Giving Back In a world often marked by division and...
από Leonard Pokrovski 2024-06-11 23:14:47 0 18χλμ.
Financial Services
Public Service Loan Forgiveness: a path out of student debt
Do you work for a government or nonprofit organization? Or are you considering that career...
από Mark Lorenzo 2023-06-02 20:12:52 0 22χλμ.
Business
How Can Your Product Be Improved or Differentiated?
In today’s competitive marketplace, no product exists in isolation. Customers often have...
από Dacey Rankins 2025-08-18 13:30:56 0 14χλμ.

BigMoney.VIP Powered by Hosting Pokrov