JavaScript RegExp lastIndex property
- Ci gaba da ɗaukar nau'in ignoreCase
- Ci gaba da ɗaukar nau'in multiline
- Ci gaba da ɗaukar nau'in Kita Ilminin JavaScript RegExp Kira
Definition and Usage
lastIndex
property specifies the index to start the next match.
note:This property is only valid when the "g" modifier is set.
This property returns an integer that specifies exec()
or test()
the character position immediately following the last match found by the method.
note:if exec()
and test()
If no match is found, then lastIndex
reset to 0.
example
let text = "The rain in Spain stays mainly in the plain"; let pattern = /ain/g; let result = ""; while (pattern.test(text)==true) { result += "Found at pos " + pattern.lastIndex + "<br>"; {}
syntax
regexp.lastIndex
return value
type | description |
---|---|
number | integer, it specifies the character position immediately following the last match found by the exec() or test() methods. |
Technical Details
The RegExp object's lastIndex
This property is a readable and writable value. For regular expressions that have the g flag set, this property stores an integer that declares the position of the first character after the last match text.
the result of the last match found by the methods RegExp.exec() and RegExp.test() is lastIndex
the position pointed to by the property as the starting point for the next search. This allows you to traverse all matching texts in a string by repeatedly calling these methods.
This property is readable and writable. It can be set as soon as the next search starts in the target string. When the methods exec() or test() can no longer find matching text, they automatically set lastIndex
reset property to 0.
browser supports
lastIndex
是 ECMAScript1 (ES1) 特性。
Ita ce ɗanar ECMAScript1 (ES1).
Duk browsers suna ɗaukar ɗaukar ES1 (JavaScript 1997) a ƙirki: | IE | Edge | Firefox | Safari | Opera |
---|---|---|---|---|---|
Dukiya | Dukiya | Dukiya | Dukiya | Dukiya | Dukiya |
- Ci gaba da ɗaukar nau'in ignoreCase
- Ci gaba da ɗaukar nau'in multiline
- Ci gaba da ɗaukar nau'in Kita Ilminin JavaScript RegExp Kira