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
Regular Expressions

Avatar of undefined
Last Comment
Patrick Matthews

8/22/2022 - Mon