You searched for the word(s):
< 1 second(s)
-
Aussie Susan:It would also help if you told us the regex variant you are using as requested in the posting guidelines in the sticky note at the beginning of this forum.
Susan
Whoops, sorry. It's the Javascript regex variant.
Thanks for the info. I figured out my problem was really the + in ([0-9]+) ...
-
Howdy all,
I've got this incoming string "132 / 456 / 789" (Or sometimes even "123/456/789" but it should always be with / seperating the numeric values.) and I'm trying to capture just the numbers and move them into a variable. My RegEx is:
([0-9]+)(?:[^0-9]*)([0-9]+)(?:[^0-9]*)([0-9]+)(?:[^0-9]*)
So, ...