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
Business
What Tools or Techniques Support Product Planning?
Product planning is the backbone of effective product management. It provides clarity on what...
Por Dacey Rankins 2025-08-20 15:53:01 0 7K
Business
How Do You Resolve a Conflict Using a Step-by-Step Process?
Resolving conflict effectively requires a clear, structured approach. Following a step-by-step...
Por Dacey Rankins 2025-08-04 18:27:33 0 8K
Conventions
User Agreement for Games (EULA), why and how it is drawn up
Most likely, each of us at least once in his life when first launching an application or game...
Por FWhoop Xelqua 2022-11-20 19:36:06 0 25K
Personal Finance
We conduct an audit of assets and liabilities
What will you learn?   What is personal capital   How to Build a...
Por FWhoop Xelqua 2022-10-07 15:36:52 0 28K
Business
What office supplies are still necessary in a digital office?
The conference room table looked almost aggressively modern. Wireless chargers embedded into...
Por Dacey Rankins 2026-05-07 00:51:43 0 4K

BigMoney.VIP Powered by Hosting Pokrov