当前位置: 代码迷 >> python >> 在python字符串中转义“ \\”字符[需要避免十六进制编码]
  详细解决方案

在python字符串中转义“ \\”字符[需要避免十六进制编码]

热度:117   发布时间:2023-06-13 13:32:44.0

需要从此字符串中选择IP地址str1 = '<\\11.1.1.1\\testdata>'

实现以下选项时1. reg = re.compile("^.*\\/+([\\d\\.]+)/\\+.*$",re.I).search mth = reg(str2) mth.group(1)

得到了错误信息

Traceback (most recent call last):
  File "<pyshell#90>", line 1, in <module>
    mth.group(1)
AttributeError: 'NoneType' object has no attribute 'group'

选项2。

str1 = "<\11.1.1.1\cisco>"
str1.replace("\\","\\\\")
print str1

output - '<\t.1.1.1\\\\cisco>'
  1. 尝试将str1作为原始字符串

    str1 = r"<\\11.1.1.1\\cisco>" str2 = str1.replace("\\\\","/"); print str2 output - '</11.1.1.1/cisco>'

    reg = re.compile("^.*\\/+([\\d\\.]+)/\\+.*$",re.I).search mth = reg(str2) mth.group(1)

error message - 
Traceback (most recent call last):
  File "<pyshell#90>", line 1, in <module>
    mth.group(1)
AttributeError: 'NoneType' object has no attribute 'group'

您应该使用原始字符串形式:

str1 = r"<\11.1.1.1\cisco>"
print re.search(r'\b\d+(?:\.\d+)+\b', str1).group()
11.1.1.1
str1 = r'<\11.1.1.1\testdata>'
reg = re.compile(r"^.*?\\([\d\.]+)\\.*$",re.I)
mth = reg.search(str1)

print mth.group(1)

您需要在两个地方都使用raw字符串。

输出: 11.1.1.1

如果您不想将raw字符串用于正则表达式,则必须使用

reg = re.compile("^.*?\\\([\d\.]+)\\\.*$",re.I)