Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
15
rated 0 times [  19] [ 4]  / answers: 1 / hits: 105289  / 15 Years ago, mon, august 3, 2009, 12:00:00

Here is the case:
I want to find the elements which match the regex...




targetText = SomeT1extSomeT2extSomeT3extSomeT4extSomeT5extSomeT6ext




and I use the regex in javascript like this



reg = new RegExp(/e(.*?)e/g);   
var result = reg.exec(targetText);


and I only get the first one, but not the follow....
I can get the T1 only, but not T2, T3 ... ...


More From » regex

 Answers
31
var reg = /e(.*?)e/g;
var result;
while((result = reg.exec(targetText)) !== null) {
doSomethingWith(result);
}

[#99010] Wednesday, July 29, 2009, 15 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
luna

Total Points: 698
Total Questions: 114
Total Answers: 93

Location: Israel
Member since Wed, Apr 14, 2021
3 Years ago
luna questions
;