Say I have a string:
std::string x = "\\asdasd\\sewef\\sdvrhe\\"
How do I remove the double backslahes so that the string only contains single backslahes?
I need x string's value to be:
\asdasd\sewef\sdvrhe\
I am open to replacing chars or removing any method that achieves the desired result will be accepted.