bindingMatchVarCount( Binding )
Returns the number of match variables in the binding.
:-) var regex = //one (.*) three (.*)/;
There are 0 results
:-) var binding = regex.findMatch( "one two three four" );
There are 0 results
;-) binding.bindingMatchVarCount;
There is 1 result
2