I've looked at some of the answers to questions about removing a special character such as "\" from text string but they're not resolving the issue I'm having removing all backslashes.
I've tried gsub and stringr's str_replace but neither has worked.
str_remove(urls, "\")
gsub("\","",urls)
Removing or trimming all backslashes in the text string.