对python匹配字符串开头和结尾的⽅法详解
1、你需要通过指定的⽂本模式去检查字符串的开头或者结尾,⽐如⽂件名后缀,URL Scheme 等等。检查字符串开头或结尾的⼀个简单⽅法是使⽤str.startswith() 或者是dswith()⽅法。⽐如:
>>> filename = ''
>>> dswith('.txt')
True
>>> filename.startswith('file:')
False
>>> url = ''
>>> url.startswith('http:')
True
>>>
2、如果你想检查多种匹配可能,只需要将所有的匹配项放⼊到⼀个元组中去,然后传给 startswith()或者 endswith() ⽅法:>>> import os
>>> filenames = os.listdir('.')
>>> filenames
[ 'Makefile', 'foo.c', 'bar.py', 'spam.c', 'spam.h' ]
>>> [name for name in filenames dswith(('.c', '.h')) ]
['foo.c', 'spam.c', 'spam.h'
>>> dswith('.py') for name in filenames)
True
>>>
#⽰例2
quest import urlopen
def read_data(name):
if name.startswith(('http:', 'https:', 'ftp:')):
return urlopen(name).read()
else:
with open(name) as f:
正则匹配开头和结尾ad()
奇怪的是,这个⽅法中必须要输⼊⼀个元组作为参数。如果你恰巧有⼀个list 或者 set类型的选择项,要确保传递参数前先调⽤ tuple()将其转换为元组类型。⽐如:
>>> choices = ['http:', 'ftp:']
>>> url = ''
>>> url.startswith(choices)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: startswith first arg must be str or a tuple of str, not list
>>> url.startswith(tuple(choices))
True
>>>
3、startswith() 和 endswith() ⽅法提供了⼀个⾮常⽅便的⽅式去做字符串开头和结尾的检查。类似的操作也可以使⽤切⽚来实现,但是代码看起来没有那么优雅。⽐如:
>>> filename = ''
>>> filename[-4:] == '.txt'
True
>>> url = ''
>>> url[:5] == 'http:' or url[:6] == 'https:' or url[:4] == 'ftp:'
True
>>>
4、你可以能还想使⽤正则表达式去实现,⽐如:
>>> import re
>>> url = ''
>>> re.match('http:jhttps:jftp:', url)
<_sre.SRE_Match object at 0x101253098>
>>>
5、当和其他操作⽐如普通数据聚合相结合的时候 startswith()和endswith() ⽅法是很不错的。⽐如,下⾯这个语句检查某个⽂件夹中是否存在指定的⽂件类型:
if dswith(('.c', '.h')) for name in listdir(dirname)):
...
以上这篇对python 匹配字符串开头和结尾的⽅法详解就是⼩编分享给⼤家的全部内容了,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论