An **awk** alternative:
awk 'match($2,/[0-9]+$/) {printf("%s\t%s\t%s\
", $1, substr($2,0,RSTART), substr($2,RSTART,RLENGTH))}' filename
This will match only the numeric string at the end of the second column.
An **awk** alternative:
awk 'match($2,/[0-9]+$/) {printf("%s\t%s\t%s\
", $1, substr($2,0,RSTART), substr($2,RSTART,RLENGTH))}' filename
This will match only the numeric string at the end of the second column.