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.
_
I wanted to remove "www." from a href so I did this:
"www."
const str = "https://www.example.com/path"; str.split("www.").join(""); // https://example.com/path