Python正则表达式和原始字符串

时间:2016-05-19 08:53:33

标签: python regex string

我在Python shell中键入以下行:

In [67]: print(re.match(r"\d", "\\ddfss")) 

None

因为" \ d"是一个原始字符串,我希望re.match将返回字符串" \ ddfss"的匹配对象。你知道它为什么不发生吗?

0 个答案:

没有答案