0
我想找到一個簡單的正則表達式匹配。我在RegexPal中試過我的正則表達式,看起來工作正常。python中的這個正則表達式有什麼問題?
pat = re.compile("\sterm=\"([\w\s]+)\"")
line = "<aspectTerm term=\"battery life\" polarity=\"positive\" from=\"74\" to=\"86\"/>
mat = pat1.match(line)
print mat ### Prints None
行實際上是從文件中讀取的。
我試着看看這裏是否有問題。所以我正在嘗試這個現在: -
re.match("term", "string term")
而且在這裏我也得到沒有回報。怎麼了?