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+"?

link|improve this question
Basically avoid #.####e+## pattern? /\d+(?:\.\d+)?/ should do the trick. – Brad Christie May 10 '11 at 21:12
How does qr/^\d*(?:\.\d+)?$/ (or trivial variants, for non-optional parts) fail? – derobert May 10 '11 at 21:15
The thing is its a cost field, and can contain currency symbols, parenthesis and other characters like that. – Chris May 10 '11 at 21:18
Well, if by "exponential values" you mean 10e7, 10e-7, or 10e+7, then you can look for things that don't match qr/\d+e[-+]?\d+/i. Of course, there are many ways to write exponential values. – derobert May 10 '11 at 21:26
Heh, I know this is not what you're looking for, but /^[^\x{2070}\x{2074}-\x{207b}\xb2\xb3\xb9]*$/. SCNR ;-P – ninjalj May 10 '11 at 21:38
feedback

3 Answers

up vote 0 down vote accepted

The thing is its a cost field, and can contain currency symbols, parenthesis and other characters like that

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:

Can I just say something like match anything except if it contains "e-", "e+", "E-" or "E+"?

That would be e.g. ^(?!.*[eE][+-]).*$ (using a negative lookahead), but probably matching more than you like…

link|improve this answer
1  
That works, thanks! – Chris May 10 '11 at 22:04
feedback

This is not the shortest solution, but check the correctness of the whole number...

if( $num =~ /^[-+]?[0-9]*\.?[0-9]+([eE][-+]?[0-9]+)?$/ ) {
    #correct floating point
    if( $num =~ /e/i ) {
        #exponential
    } else {
        #not exponential
    }
}
link|improve this answer
That'd not allow his "currency symbols, parenthesis, and other characters like that" – derobert May 10 '11 at 21:27
feedback

While it's not entirely clear to me what you're looking for, you might want to take a look at the Regexp::Common module, which is available from CPAN, specifically at Regexp::Common::number. It might offer what you're after.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.