String.prototype.match()

0
12كيلو بايت

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

البحث
الأقسام
إقرأ المزيد
Business
What Should a Presentation Include?
A well-structured presentation isn’t just about attractive slides — it’s about...
بواسطة Dacey Rankins 2025-12-04 16:24:25 0 4كيلو بايت
Customer Service
What Are the Main Goals of Customer Service?
Customer service is a critical function within any business because it directly influences how...
بواسطة Dacey Rankins 2026-03-09 23:04:02 0 3كيلو بايت
Productivity
What is flow state and how do I achieve it?
What Is Flow State and How Do I Achieve It? Flow state is a psychological condition in which a...
بواسطة Michael Pokrovski 2026-04-18 06:36:33 0 472
Business and Corporate Finance
How Do Startups Manage Finances?
How Do Startups Manage Finances? Early-Stage Financial Best Practices Managing finances is one...
بواسطة Leonard Pokrovski 2026-01-08 09:27:46 0 4كيلو بايت
Artificial Life
Artificial Life
Artificial life (a-life, from artificial life) is the study of life , living...
بواسطة Michael Pokrovski 2024-03-20 19:30:41 0 28كيلو بايت

BigMoney.VIP Powered by Hosting Pokrov