String.prototype.match()

来源:互联网 发布:linux accept函数 编辑:程序博客网 时间:2024/05/16 17:26

Summary

The match() method retrieves the matches when matching astring against a regular expression.

Syntax

str.match(regexp)

Parameters

regexp
A regular expression object. If a non-RegExp object obj is passed, it is implicitly converted to aRegExp by using new RegExp(obj).

Returns

array
An Array containing the matched results or null if there were no matches.

Description

If the regular expression does not include the g flag, returns the same result asRegExp.exec(). The returned Array has an extra input property, which contains the original string that was parsed. In addition, it has anindex property, which represents the zero-based index of the match in the string.

If the regular expression includes the g flag, the method returns anArray containing all matches. If there were no matches, the method returnsnull.

See also: RegExp methods

  • If you need to know if a string matches a regular expression RegExp, use search().
  • If you only want the first match found, you might want to use RegExp.exec() instead.

Examples

Example: Using match()

In the following example, match() is used to find 'Chapter' followed by 1 or more numeric characters followed by a decimal point and numeric character 0 or more times. The regular expression includes thei flag so that case will be ignored.

var str = 'For more information, see Chapter 3.4.5.1';var re = /(chapter \d+(\.\d)*)/i;var found = str.match(re);console.log(found);// logs ['Chapter 3.4.5.1', 'Chapter 3.4.5.1', '.1']// 'Chapter 3.4.5.1' is the first match and the first value // remembered from `(Chapter \d+(\.\d)*)`.// '.1' is the last value remembered from `(\.\d)`.

Example: Using global and ignore case flags with match()

The following example demonstrates the use of the global and ignore case flags withmatch(). All letters A through E and a through e are returned, each its own element in the array.

var str = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';var regexp = /[A-E]/gi;var matches_array = str.match(regexp);console.log(matches_array);// ['A', 'B', 'C', 'D', 'E', 'a', 'b', 'c', 'd', 'e']

Specifications

SpecificationStatusCommentECMAScript 3rd Edition.StandardInitial definition. Implemented in JavaScript 1.2.ECMAScript 5.1 (ECMA-262)
The definition of 'String.prototype.match' in that specification.Standard ECMAScript 6 (ECMA-262)
The definition of 'String.prototype.match' in that specification.Draft 

Browser compatibility

  • Desktop
  • Mobile
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafariBasic support(Yes)(Yes)(Yes)(Yes)(Yes)

Firefox-specific notes

  • Starting with Gecko 27 (Firefox 27 / Thunderbird 27 / SeaMonkey 2.24), this method has been adjusted to conform with the ECMAScript specification. Whenmatch() is called with a global regular expression, the RegExp.lastIndex property (if specified) will be reset to 0 (bug 501739).

See also

  • RegExp.prototype.exec()
  • RegExp.prototype.test()
0 0
原创粉丝点击