I have the following string of delimiters:
delimiters = " \t,;.?!-:@[](){}_*/"
I want to use the re.split() method to split words in a list. I am doing this:
new_word = re.split(' |,|\t|.|?|!|-|:|@|[|]|{|}|(|)|_|{|}|*|/',word)
I don't understand which specific delimiters need the escape character before them.