I'm working with some text that have this format:
"Say that they\'ll price match" "wouldn't price match" "hey don\\'t install on weekends"
The problem I have here is that I have this backslash '\' '\\' all over the text, I need to remove those, using
.replace('\\','')
But I'm not sure if those are the unique symbols that appears on the text or if there are more combinations, I can't read all the data manually to check this, there are thousands of pages. Is this a common problem? is caused by an specific encoding format?