我想从中转义一个字符串:
str1 = "this is a string (with parentheses)"
对此:
str2 = "this is a string \(with parentheses\)"
也就是说,\
括号中的单个转义字符。这将被提供给另一个需要转义这些字符并且只能使用单个转义斜杠的客户端。
为简单起见,我在下面只关注左括号,即从 更改'('
为'\('
到目前为止,我尝试过:
代替
str1.replace("(", "\(") 'this is a string \\(with parentheses)'
子
re.sub( "\(", "\(", str1) 'this is a string \\(with parentheses)'
使用原始字符串转义字典
escape_dict = { '(':r'\('} "".join([escape_dict.get(char,char) for char in str1]) 'this is a string \\(with parentheses)'
无论如何,我总是受到双重反对。有没有办法只得到一个?