Home | History | Annotate | Download | only in String

Lines Matching refs:matches

80     for ( var matches = 0; matches < split_array.length; matches++ ) {
82 "( " + string + " ).split(" + str_sep +")[" + matches +"]",
83 split_array[matches],
84 string.split( separator )[matches] );
111 for ( var matches = 0; matches < slimit; matches++ ) {
113 "( " + string + " ).split(" + str_sep +", " + limit + " )[" + matches +"]",
114 split_array[matches],
115 string.split( separator, limit )[matches] );