Given the JavaScript following code
var patter = /abc(d)e/
var somestring = 'abcde'
var index = somestring.match(patter)
I would like to know the start index of a group match, just like in java Patter#start(n) method.
Thanks
|
Given the JavaScript following code
I would like to know the start index of a group match, just like in java Patter#start(n) method. Thanks |
|||
|
|
You can get the offset of some capture group by capturing everything else before that capture group:
Or, without capturing the start of the subject string:
match.index is the start index of the match in the string. |
||||
|
|