What's a good regex to match a decimal number to check that it does not contain exponential values?
Thanks for any help.
Can I just say something like match anything except if it contains "e-", "e+", "E-" or "E+"?
|
What's a good regex to match a decimal number to check that it does not contain exponential values? Thanks for any help. Can I just say something like match anything except if it contains "e-", "e+", "E-" or "E+"? | ||||
|
feedback
|
Without detailed specs it's not an easy task using regular expressions. In my opinion, regex is inappropriate when you know so little about the format of your input. Update after OP's edit:
That would be e.g. | |||||
feedback
|
|
This is not the shortest solution, but check the correctness of the whole number...
| |||
feedback
|
|
While it's not entirely clear to me what you're looking for, you might want to take a look at the | |||
|
feedback
|
/\d+(?:\.\d+)?/should do the trick. – Brad Christie May 10 '11 at 21:12qr/^\d*(?:\.\d+)?$/(or trivial variants, for non-optional parts) fail? – derobert May 10 '11 at 21:15qr/\d+e[-+]?\d+/i. Of course, there are many ways to write exponential values. – derobert May 10 '11 at 21:26/^[^\x{2070}\x{2074}-\x{207b}\xb2\xb3\xb9]*$/. SCNR ;-P – ninjalj May 10 '11 at 21:38