I have a string that will have a value somewhere along the lines of
#549382This/ *is a test&
And I want to remove the #549382
from the text.
I know there are a lot of questions about regex and I have looked at this one specifically which would work if I knew the character to remove. But any letter or symbol can follow that string of numbers. I need a way to be able to say
Give me all characters between the '#' and the first letter
What the letter is does not matter but it can be any non-digit character or letter.
For example
#549382This is a test -> This is a test
#71290571Another test here -> Another test here
#276//a comment as well -> //a comment as well