我需要從外部文件加載時,需要執行一些正則表達式...執行位於外部文件的正則表達式在Python
該算法不需要知道他們是什麼樣的正則表達式的.. 。但最終它必須打印在標籤
email_re=["EMAIL","([^@|\s][email protected][^@]+\.[^@|\s]+)"];
phone_re=["PHONE","(\d{3}[-\.\s]??\d{3}[-\.\s]??\d{4}|\(\d{3}\)\s*\d{3}[-\.\s]??\d{4}|\d{3}[-\.\s]??\d{4})"];
regexs=[email_re,
phone_re]
for regex in regexs:
#print regex
match = re.search(regex[1], prodotto)
if match:
print regex[0]+": "+match.group()
什麼是創建regexs數組定義在外部文本文件中的所有正則表達式的最好方法?
做方案需要知道,如果正則表達式是一個正則表達式的電子郵件或電話的正則表達式,等等? – 2015-03-13 13:21:19
它必須打印正在執行的正則表達式的標籤 – 2015-03-13 13:23:04
,您可以將json放入文件並將其加載到程序中。 {「email」:「email regex here」,...} – 2015-03-13 13:25:28