Let’s say I have test_23 and I want to remove test_.
test_23
test_
How do I do that?
The prefix before _ can change.
_
string = "removeTHISplease"; result = string.replace('THIS','');
I think replace do the same thing like a some own function. For me this works.