|
|
Browse by Tags
All Tags » numbers » javascript
-
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, ...
-
I have a text input field that I want only to accept numbers or the strings "min" and "max"
I am using the javascript replace function and have the code (/[^0-9]/gi,"") that will get rid of all characters that aren't numbers, what do I need to add so that it will still keep the strings min and max? I ...
|
|
|