I have an array of characters I want to be removed from a string:
stops = ["[", "]", "^", "(", ")", "#", "*", "?", "~"]
I want to be able to pass the array and have all occurrences of those chars removed so that:
"str [with] unwanted# char*acters"
becomes
"str with unwanted characters"
If you need to remove characters you can use
#delete