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
How Do You Set Up and Run Effective CRO Tests?
Conversion Rate Optimization (CRO) is as much a science as it is an art. The science comes from...
Por Dacey Rankins 2025-09-10 14:58:25 0 6K
Personal Finance
What Do I Spend the Most Money On Each Month?
What Do I Spend the Most Money On Each Month? Understanding Your Spending Habits to Take Control...
Por Leonard Pokrovski 2025-11-11 22:58:04 0 8K
Marketing and Advertising
What Are Advertising Objectives?
Advertising is not just about creating attractive visuals or catchy slogans. At its core,...
Por Dacey Rankins 2026-01-06 14:16:29 0 6K
Life Issues
Nymphomaniac: Teil 2. (2013)
A self-diagnosed nymphomaniac recounts her erotic experiences to the man who saved her after a...
Por Leonard Pokrovski 2023-05-02 20:33:32 0 28K
Programming
Python Force Raise Errors
You can force raise errors for your application in your library/code. These errors can be useful...
Por Jesse Thomas 2023-02-20 22:00:40 0 13K

BigMoney.VIP Powered by Hosting Pokrov