Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

javascript find all occurrences in string

var str = "I learned to play the Ukulele in Lebanon."
var regex = /le/gi, result, indices = [];
while ( (result = regex.exec(str)) ) {
    indices.push(result.index);
}
console.log(indices) // => [2, 25, 27, 33]
//find all occurence of le and return the return an array of the indeces
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #javascript #find #occurrences #string
ADD COMMENT
Topic
Name
8+9 =