d/\d

d is delete
/ is search
\d is the regex representation of a number

so you can delete from the cursor until the next digit using d/\d

Further Reading

:h / :h d

More Gifs