Returns both the start and end indices of the section of the original
string matched by one of the regular expression's match variables. The
match variable is specified as an integer, with 1
representing the first match variable in the original regular
expression.
:-) var regex = //one (.*) three (.*)/;
There are 0 results
:-) var binding = regex.findMatch( "one two three four" );
There are 0 results
;-) binding.bindingMatchVarLimits( 1 );
There are 2 results
5
7
;-)
;-) binding.bindingMatchVarLimits( 2 );
There are 2 results
15
18