我希望将给定的字符串try @ to#resolve#
转换为try @ to#resolve#
。我试过下面的代码,它导致错误。
如果在给定的字符串中找到特殊字符,则如何在结果字符串中附加以\开头的特殊字符?
import re
My_given_string = "try@to#resolve#"
# Here I'm verifying of the string contains special characters or not
if not (My_given_string.isalnum()):
my_new_string=x = re.sub("\s", "\\s", My_given_string)
print(my_new_string)
问题来源:stackoverflow
您可以对反斜杠中的非单词字符和sub使用正向超前
import re
My_given_string = "try@to#resolve#"
my_new_string = My_given_string
# Here I'm verifying of the string contains special characters or not
if not (My_given_string.isalnum()):
my_new_string = x = re.sub(r"(?=\W)", r"\\", My_given_string)
print(My_given_string)
print(my_new_string)
输出
try@to#resolve#
try\@to\#resolve\#
回答来源:stackoverflow
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。