I'm looking for a regular expression for accepting only numbers and number with ,
or .
characters. For example
12345--accepted
1.2344 accepted
1,2345 accepted
+123.34@@##sdsd--not accepted
I'm using this /^\d+$/
fot it does not allow ,
or .
seperators