E.g., the following command strips alpha characters from the second (tab delimited) field.
awk -F"\t" '{gsub(/[A-Za-z]/,"",$2); print $2 }'