python安全工具開發應用01正則表達式

01正則表達式         什麼是:單個字符串來描述匹配以一列符合某個語法規則的字符串 實例:來對IP地址進行匹配 a標籤 通過re模塊提供對正則表達式的支持: > pattern=re.compile('hello') >> match=pattern.match('hello world') >>> print (match.group()) hello 可以合併爲word=re.find
相關文章
相關標籤/搜索