String.prototype.match()

0
8Кб

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

Поиск
Категории
Больше
Social Issues
Jailbait. (2014)
Anna Nix is sent to a juvenile prison for the murder of her abusive stepfather. In the prison,...
От Leonard Pokrovski 2023-04-30 16:57:07 0 23Кб
Investing
How can a seller enter the global market with minimal investment? Analysis of five risks.
  How can a seller enter the global market with minimal investment? Analysis of...
От Leonard Pokrovski 2024-03-13 21:38:24 0 26Кб
Business
What Are Some Common Ethical Issues in Business?
In the fast-paced world of business, ethical dilemmas often arise, challenging companies to make...
От Dacey Rankins 2025-01-31 15:16:10 0 8Кб
Business
Group Cohesiveness: The Glue That Holds Teams Together
In any successful team, there’s often an invisible force at play—something that...
От Dacey Rankins 2025-05-21 14:57:34 0 4Кб
Financial Services
Aggregate demand and aggregate supply curves
Key points Aggregate supply is the total quantity of output firms will...
От Mark Lorenzo 2023-03-23 20:00:34 0 14Кб

BigMoney.VIP Powered by Hosting Pokrov