您好,登錄后才能下訂單哦!
python匹配字符串的方法?這個問題可能是我們?nèi)粘W習或工作經(jīng)常見到的。希望通過這個問題能讓你收獲頗深。下面是小編給大家?guī)淼膮⒖純?nèi)容,讓我們一起來看看吧!
python 中如何匹配字符串?
1. re.match 嘗試從字符串的起始位置匹配一個模式,如果不是起始位置匹配成功的話,match()就返回none。
import re line="this hdr-biz 123 model server 456" pattern=r"123" matchObj = re.match( pattern, line)
2. re.search 掃描整個字符串并返回第一個成功的匹配。
import re line="this hdr-biz model server" pattern=r"hdr-biz" m = re.search(pattern, line)
3. Python 的re模塊提供了re.sub用于替換字符串中的匹配項。
import re line="this hdr-biz model args= server" patt=r'args=' name = re.sub(patt, "", line)
4. compile 函數(shù)用于編譯正則表達式,生成一個正則表達式( Pattern )對象,供 match() 和 search() 這兩個函數(shù)使用。
import re pattern = re.compile(r'\d+')
5. re.findall 在字符串中找到正則表達式所匹配的所有子串,并返回一個列表,如果沒有找到匹配的,則返回空列表。
import re line="this hdr-biz model args= server" patt=r'server' pattern = re.compile(patt) result = pattern.findall(line)
6. re.finditer 和 findall 類似,在字符串中找到正則表達式所匹配的所有子串,并把它們作為一個迭代器返回。
import re it = re.finditer(r"\d+","12a32bc43jf3") for match in it: print (match.group() )
PS:Python字符串匹配及正則表達式說明
解析url地址正則表達式:
regexp = (r'^(?P<scheme>[a-z][\w\.\-\+]+)?:(//)?' r'(?:(?P<username>\w+):(?P<password>[\w\W]+)@|)' r'(?P<domain>[\w-]+(?:\.[\w-]+)*)(?::(?P<port>\d+))?/?' r'(?P<path>\/[\w\.\/-]+)?(?P<query>\?[\w\.*!=&@%;:/+-]+)?' r'(?P<fragment>#[\w-]+)?$') match = re.search(regexp, url.strip(), re.U) if match is None: raise ValueError('Incorrent url: {0}'.format(url)) url_parts = match.groupdict() url='https://blog.csdn.net/weixin_40907382/article/明細/79654372' print(url_parts):{'scheme': 'https', 'username': None, 'password': None, 'domain': 'blog.csdn.net', 'port': None, 'path': '/weixin_40907382/article/明細/79654372', 'query': None, 'fragment': None}
感謝各位的閱讀!看完上述內(nèi)容,你們對python匹配字符串的方法大概了解了嗎?希望文章內(nèi)容對大家有所幫助。如果想了解更多相關(guān)文章內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。