标签:art 正则表达 img 换行符 正则表达式 中比 https 问题 进入
import re
string = '3\8'
m = re.search('(\d+)\\\\', string)
if m is not None:
print (m.group(1) )
n = re.search(r'(\d+)\\', string)
if n is not None:
print (n.group(1) )
以上内容转载至https://www.w3xue.com/exp/article/20197/46254.html
由于正则表达式使用反斜杠来转义特殊字符,而python自身处理字符串时,反斜杠也是用于转义字符,这样就产生一个双重转换的问题,
标签:art 正则表达 img 换行符 正则表达式 中比 https 问题 进入
原文地址:https://www.cnblogs.com/gxcstyle/p/11830795.html