我尝试使用Python re
包来查找包含"&"
字符的模式,但失败了。我搜索了"&"
是否是元字符。似乎并非如此。这是我的代码:
import re
if re.match("&a", "adfefwfeadf&adfewf"):
print("find1 '&'")
if re.match(r"&a", "adfefwfeadf&adfewf"):
print("find2 '&'")
if re.match(r"\&a", "adfefwfeadf&adfewf"):
print("find3 '&'")
什么都没打印。