I have strings that I need to remove the trailing characters from. There are several types, here are some examples:
"82.882ft" "101in" "15.993ft³" "10.221mm"
Etc. I need to remove the length delimiters so I will be left with strings:
"82.882" "101" "15.993" "10.221"
Ideas?