0
我有一個這樣的字符串,如何使用「[」作爲在Python正則表達式的象徵
a = '''hai stackoverflow. <help>//(good evening): value ="[i am new to 'python'], i need help"</help>'''
從這個字符串,我需要將部分字符串提取<help>
到</help>
。 這意味着,我的輸出應該是
<help>//(good evening): value ="[i am new to 'python'], i need help"</help>
我試圖用這個表達
re.search(r'<help> [\w:=">/-/\[\]]*',a).group()
,但我得到錯誤的
Traceback (most recent call last):
File "<pyshell#467>", line 1, in <module>
re.search(r'<help> [\w:=">/-/\[\]]*',a).group()
AttributeError: 'NoneType' object has no attribute 'group'
包含您遇到的錯誤。 –
... *什麼*錯誤?你有沒有嘗試使用正則表達式調試器,如http://regex101.com? – jonrsharpe
*我得到錯誤*是一個無用的問題描述,除非你告訴我們你得到了什麼*錯誤*。它在你的屏幕上,就在眼前。絕對沒有任何藉口**,因爲你沒有在你的文章中加入它。 –