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
Who Should Be Invited to the Meeting?
Why Selecting the Right Participants Drives Better Results Meetings are an essential part of...
Por Dacey Rankins 2025-05-30 14:54:21 0 8K
Business
What Are Common Mistakes When Using User Stories?
User stories are one of the most widely adopted tools in Agile product development. They provide...
Por Dacey Rankins 2025-08-26 11:42:49 0 11K
Weddings
The Ultimate Guide to Shopping for Your Dream Wedding: Making Every Moment Memorable
Shopping for your wedding can be both exhilarating and overwhelming. From finding the perfect...
Por Dacey Rankins 2024-06-05 17:49:35 0 20K
Mental Health
Dementia: Middle
As dementia progresses, initial symptoms generally worsen. The rate of decline is different for...
Por Kelsey Rodriguez 2023-07-20 17:00:14 0 15K
Business
Why is Business Strategy Important? Understanding the Role of Strategy in Achieving Business Goals
Business strategy is not just a buzzword; it’s the foundation of any successful business. A...
Por Dacey Rankins 2024-12-23 16:02:49 0 12K

BigMoney.VIP Powered by Hosting Pokrov