python re.match函式的使用
1、從字串的起始位置匹配正規表示式,re.match函式從string的起始位置開始匹配。
2、如果匹配失敗則返回None,匹配成功則返回匹配到的字串。
pattern是正規表示式,string是要匹配的字串,flags是標誌位。
re.match函式從string的起始位置開始匹配。
例項
import re x=re.match("[1-9]d*","123abd") if x!=None: print(x.group()) else: print("none") y=re.match("[1-9]d*","c123ad") if y!=None: print(y.group()) else: print("none") #輸出結果: 123 none
以上就是python re.match函式的使用,希望對大家有所幫助。更多Python學習指路:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/758/viewspace-2828013/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- python函式的基本使用Python函式
- Python hasattr() 函式 // python中hasattr()、getattr()、setattr()函式的使用Python函式
- python-函式使用Python函式
- Python中eval函式的表示式如何使用Python函式
- Python中函式的高階使用Python函式
- 如何使用python中的exec函式?Python函式
- python 中偏函式 partial 的使用Python函式
- Python函式每日一講 - help函式的使用與實踐Python函式
- Python中zip函式的使用方法Python函式
- python中fail函式如何使用PythonAI函式
- python中super函式如何使用?Python函式
- Python內部函式zip使用Python函式
- 如何使用python中的取整floor函式?Python函式
- Python列表中set函式的使用方法!Python函式
- Python中使用內層函式的好處Python函式
- python不定長函式:*args 和 **args的使用Python函式
- python3 堆相關函式的使用Python函式
- 函式: 函式是怎麼使用的?函式
- python中id()函式、zip()函式、map()函式、lamda函式Python函式
- Python 3 中生成器函式yield表示式的使用Python函式
- 使用 Python 函式進行模組化Python函式
- Python基礎函式使用知識Python函式
- 使用python繪出常見函式Python函式
- Python的魔法函式Python函式
- python的常用函式Python函式
- Python的zip函式Python函式
- python內建函式-eval()函式與exec()函式的區別Python函式
- 在python中使用sqlite的自定義函式功能PythonSQLite函式
- python語言幾個常見函式的使用Python函式
- Python strip函式和split函式Python函式
- Python 函式Python函式
- Python函式Python函式
- 『無為則無心』Python函式 — 25、Python中的函式Python函式
- Python 擴充之特殊函式(lambda 函式,map 函式,filter 函式,reduce 函式)Python函式Filter
- 使用bind()函式的產生的函式用作建構函式this的指向函式
- Shell 函式的使用函式
- Thunk函式的使用函式
- Generator 函式的使用函式