您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“Python cookbook中如何在字符串的開頭或結尾處進行文本匹配操作”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“Python cookbook中如何在字符串的開頭或結尾處進行文本匹配操作”這篇文章吧。
問題:在字符串的開頭或結尾處按照指定的文本模式做檢查,例如檢查文件的擴展名、URL協議類型等;
解決方法:使用str.startswith()
和str.endswith()
方法
>>> filename='spam.txt' >>> filename.endswith('.txt') True >>> filename.startswith('file:') False >>> url='http://www.python.org' >>> url.startswith('htto:') False >>> url.startswith('http:') True >>>
若同時針對多個選項做檢查,只需給函數startswith()
和str.endswith()
提供包含多個可能選項的元組即可:
>>> import os >>> os.getcwd() 'D:\\4autotests\\02script\\pythonbase' >>> os.listdir() ['foo.py', 'hello.txt', 'Makefile', 'spam.c', 'spam.h', 'test1.py'] >>> filename=os.listdir() >>> filename ['foo.py', 'hello.txt', 'Makefile', 'spam.c', 'spam.h', 'test1.py'] >>> [name for name in filename if name.endswith(('.c','.h'))] ['spam.c', 'spam.h'] >>> any(name.endswith('.py') for name in filename) True
最后,當startswith()
和str.endswith()
方法和其他操作(比如常見的數據整理操作)結合起來時效果也很好。例如,下面的語句檢查目錄中有無出現特定的文件:
>>> os.getcwd() 'D:\\4autotests\\02script\\pythonbase' >>> os.listdir() ['foo.py', 'hello.txt', 'Makefile', 'spam.c', 'spam.h', 'test1.py'] >>> if any(name.endswith(('.txt','.py')) for name in os.listdir(os.getcwd())): print('文件存在') 文件存在 >>>
以上是“Python cookbook中如何在字符串的開頭或結尾處進行文本匹配操作”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。