I need help with Regex. I have words like "testBla"
, "Bla"
and test"
.
I want to cut the "test"
from the "testBla"
. So it should only remove the "test"
if the given string is larger than 4 characters.
This is what i have:
^test\w{4,}
but it doesn't work.
Any ideas?