我有一個包含document.write javascript命令的網頁。這些命令的構成就像:Python正則表達式匹配OpenWindow.document.write([this])
OpenWindow.document.write("text that I want")
我想用正則表達式返回一個列表或所有[文字,我想]的匹配對象。有人可以幫我嗎?
示例代碼至今:
f = open("filename",'r')
allhtml = f.read()
results = re.findall(the_regex,allhtml)
for s in results:
Do Stuff
基本上,我試圖重構由一系列OpenWindow.document.write javascript調用創建的頁面,其中OpenWindow是除HTML之外的窗口。 – Jeremy