Link to home
Start Free TrialLog in
Avatar of tmajor99
tmajor99

asked on

Regular Express - FInding non-numeric data in strings

Should be simple.  Just need a Reg Expression that would find non-numeric data in a string.  

For example

Column A
129.00                 -> Valid.  Decimal is OK
ABC                      -> Invalid  
A23                      --> Invalid
34                         --> Valid
9/22                     --> Invalid because of Slash
12&3                   --> Invalid because of &
300-AB               --> Invalid because of DASH and Alpha Chars
Avatar of Rgonzo1971
Rgonzo1971

Hi.,

pls try

[^\d\.]+
to find non num
or
[\d\.]+
to find num
Regards
ASKER CERTIFIED SOLUTION
Avatar of Patrick Matthews
Patrick Matthews
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial