python regex庫實例用法總結
對於regex庫的使用不難,因為本身就是python中自帶的庫,所以在調用上也是常見的庫使用類型,大部分時候都是用於搜索上下文信息的,但是有些時候也會調用它的兩個使用方法,其中一個是編譯,另外一個是匹配,能夠進行匹配的對象有很多,比如字符串,單一的字符等等,好啦,下面來詳細看下使用吧。
調用實例:
from uregex import Regex_input x=Regex_input('j','jd') x.regex() c=Regex_input('j','d') c.regex()
編譯實例:
for regex in regexes: print 'seeking "%s" ->' % regex.pattern if regex.search(text): print 'match' else: print 'No match'
這兩種方式都是常見的項目應用實例,大傢可以瀏覽掌握住,對我們的項目實例還是非常有幫助的
Python Regex庫的使用實例擴展
#!/usr/bin/python import re class Regex_input: def __init__(self,task,source): self.source=source self.task=task def regex(self): opt=re.search(self.task,self.source) if opt==None: print 'No Found the task: %s' % self.task else: print '%s is in %d - %d' % (self.task,opt.start(),opt.end())
調用實例:
from uregex import Regex_input x=Regex_input('j','jd') x.regex() c=Regex_input('j','d') c.regex()
到此這篇關於python regex庫實例用法總結的文章就介紹到這瞭,更多相關python regex庫是什麼內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- python中對正則表達式re包的簡單引用方式
- Python常用正則函數使用方法詳解
- Python使用re模塊實現正則表達式操作指南
- C#正則表達式Regex類的用法
- Python 正則表達式基礎知識點及實例