1. 程式人生 > >split與re.split/捕獲分組和非捕獲分組/startswith和endswith和fnmatch/finditer 筆記

split與re.split/捕獲分組和非捕獲分組/startswith和endswith和fnmatch/finditer 筆記

split()對字串進行劃分:

>>> a = 'a b c d'
>>> a.split(' ')
['a', 'b', 'c', 'd']

 

複雜一些可以使用re.split()

>>> import re
>>> re.split(r'[;,.]\s', a)
['a', 'b', 'c', 'd']

 


捕獲分組和非捕獲分組

>>> a
'a; b, c. d f'
>>> re.split(r'(;|,|\.|\s)\s*
', a) # 捕獲分組(會講括號符合條件的字元匹配出來) ['a', ';', 'b', ',', 'c', '.', 'd', ' ', 'f'] >>> re.split(r'(?:;|,|\.|\s)\s*', a) # 非捕獲分組(不會講括號符合條件的字元匹配出來) ['a', 'b', 'c', 'd', 'f']

 


startswith、endswith和fnmatch

startswith()用來判斷是否是以什麼字元開頭
>>> a = 'index.py'
>>> a.startswith('in
') True endswith()判斷字元是以什麼結尾 >>> a = 'index.py' >>> a.endswith('py') True fnmatch()用來匹配字串 >>> from fnmatch import fnmatch >>> fnmatch('index.py', '*.py') True 值得注意的是:fnmatch()在window和linux作業系統上有區別 # 在window作業系統上是成功的 >>> fnmatch('index.py', '*.PY') True
# 在Linux作業系統上使用失敗 >>> from fnmatch import fnmatch >>> fnmatch('index.py', '*.py') True >>> fnmatch('index.py', '*.PY') False

 

如果想忽略該區別可以是fnmatchcase(),fnmatchcase()嚴格區分大小寫

>>> from fnmatch import fnmatchcase
>>> fnmatchcase('index.py', '*.py')
True
>>> fnmatchcase('index.py', '*.PY')
False

 


finditer()將找到的全部的引數以迭代器的形式返回

>>> import re
>>> a = 'ahd; ncc,slf sa. e'
>>> patt1 = re.compile(r'[a-z]+')
>>> for i in patt1.finditer(a):
... print(i)
...
<re.Match object; span=(0, 3), match='ahd'>
<re.Match object; span=(5, 8), match='ncc'>
<re.Match object; span=(9, 12), match='slf'>
<re.Match object; span=(13, 15), match='sa'>
<re.Match object; span=(17, 18), match='e'>
>>> print(type(patt1.finditer(a)))
<class 'callable_iterator'>

 

當然:如果只是使用與檔案匹配有個更好的選擇就是glob模組