2
我有一個讀取文件行的腳本..和一些行包含錯誤消息..所以我做了一個循環(這裏只是一行)來找到這些行和提取消息:提取消息的正則表達式
import re
data = "15:31:17 TPP E Line 'MESSAGE': There is a technical problem in the server."
if (re.findall(".*E Line.*",data)):
err = re.match(r'\'MESSAGE\':\s(*$)',data)
print err
我已經和錯誤,當我執行這個腳本:/我想它返回:
There is a technical problem in the server