我試圖在Python下面的正則表達式,但它返回一個錯誤爲什麼正則表達式在python中返回錯誤?
import re
...
#read a line from a file to variable line
# loking for the pattern 'WORD' in the line ...
m=re.search('(?<=[WORD])\w+',str(line))
m.group(0)
我得到以下錯誤:
AttributeError的: 'NoneType' 對象有沒有屬性 '組'
它實際上是m,即None。 (小尼特) – 2009-03-05 10:34:01