just think about it like this: "I want to remove every digit that is followed by a non-digit"
you can express this with the unix sed tool like this:
you can express this with the unix sed tool like this:
Code:
sed -r 's/[0-9]+([^0-9])/\1/g'