phone numbers... how can you strip out any non-numeric values from a phone number?for example, lets say a client provides data where the phones are like:"(602) 555-1234"and i want to just drop this to "6025551234"ususally i would do something like: replace(replace(replace(replace(phone,'(',''),')',''),' ',''),'-','')but then sometimes, i'll get a file where it's like:"(602) 555-1234""602-555-1234""602 555-1234""John"so in this case, basically i wanna strip out anything that's not numeric, and then i can null anything where they len(phone)<10any ideas?