I want to remove numbers in my string but keep alphanumeric as is using regex in python.
" How to remove 123 but keep abc123 from this question?"
I want result to be like:
"How to remove but keep abc123 from this question?"
I tried
spen=re.sub('[0-9]+', '', que)
but it removes all numbers.
I want abc123
to be as is.