Home | History | Annotate | Download | only in String

Lines Matching refs:match

2  *  File Name:          String/match-003.js
11 * String.match( regexp )
20 * RegExp.prototype.exec repeatedly until there is no match. If there is a
21 * match with an empty string (in other words, if the value of
27 * Note that the match function is intentionally generic; it does not
32 var SECTION = "String/match-003.js";
34 var TITLE = "String.prototype.match( regexp )";
43 // invoke RegExp.prototype.exec repeatedly until there is no match. If
44 // there is a match with an empty string (in other words, if the value of
102 if ( string.match(regexp) == null || matches_array == null ) {
104 string + ".match(" + str_regexp +")",
106 string.match(regexp) );
112 "( " + string + " ).match(" + str_regexp +").length",
114 string.match(regexp).length );
116 var limit = matches_array.length > string.match(regexp).length ?
118 string.match(regexp).length;
122 "( " + string + " ).match(" + str_regexp +")[" + matches +"]",
124 string.match(regexp)[matches] );