String.prototype.match()

0
12K

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
Human Resources
How Do Personnel Managers Hire Employees?
Hiring employees is one of the most important responsibilities of personnel managers. The success...
Por Dacey Rankins 2026-04-09 18:30:37 0 1K
Financial Services
Decisions within a budget constraint
Key points The budget constraint is the boundary of the opportunity...
Por Mark Lorenzo 2023-07-12 20:28:58 0 16K
Personal Finance
What If I Overspend?
What If I Overspend? How to Regain Control and Restore Balance to Your Budget Everyone has been...
Por Leonard Pokrovski 2025-10-22 12:42:43 0 4K
Business
What books should startup founders read?
Building a startup is an exhilarating yet daunting journey. From ideation to scaling, startup...
Por Dacey Rankins 2025-04-14 13:34:49 0 11K
Business
How to Effectively Measure Customer Satisfaction: A Guide to CSAT
Customer satisfaction is one of the key metrics of customer service, and it's an axiom. It allows...
Por Dacey Rankins 2024-09-19 16:59:32 0 20K

BigMoney.VIP Powered by Hosting Pokrov