import re
text = '\\ \\ r \\ \\ nLove the filtered water \r and crushed ice in the door.'
r_text = r'\\ r \\ nLove the filtered water ' + '\r and crushed ice in the door.'
print ( f"--'{text}'--" )
print ( f"Is `text` == `r_text` ? " , text== r_text)
new_text = re .sub ( r"\\ [rtnfv]|[\t \n \r \f \v ]" , " " , text)
print ( new_text)
aW1wb3J0IHJlCnRleHQgPSAnXFxcXHIgXFxcXG5Mb3ZlIHRoZSBmaWx0ZXJlZCB3YXRlciBccmFuZCBjcnVzaGVkIGljZSBpbiB0aGUgZG9vci4nCnJfdGV4dCA9IHInXFxyIFxcbkxvdmUgdGhlIGZpbHRlcmVkIHdhdGVyICcgKyAnXHJhbmQgY3J1c2hlZCBpY2UgaW4gdGhlIGRvb3IuJwpwcmludChmIi0tJ3t0ZXh0fSctLSIpCnByaW50KGYiSXMgYHRleHRgID09IGByX3RleHRgID8gIiwgdGV4dD09cl90ZXh0KQoKbmV3X3RleHQgPSByZS5zdWIociJcXFtydG5mdl18W1x0XG5cclxmXHZdIiwiICIsdGV4dCkgCnByaW50KG5ld190ZXh0KQ==