对python 匹配字符串开头和结尾的方法详解

作者:枫叶千言 时间:2023-02-03 23:45:40 

1、你需要通过指定的文本模式去检查字符串的开头或者结尾,比如文件名后缀,URL Scheme 等等。检 查 字 符 串 开 头 或 结 尾 的 一 个 简 单 方 法 是 使 用str.startswith() 或 者 是str.endswith()方法。比如:


>>> filename = 'spam.txt'
>>> filename.endswith('.txt')
True
>>> filename.startswith('file:')
False
>>> url = 'http://www.python.org'
>>> 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 if name.endswith(('.c', '.h')) ]
['foo.c', 'spam.c', 'spam.h'
>>> any(name.endswith('.py') for name in filenames)
True
>>>

#示例2
from urllib.request import urlopen
def read_data(name):
if name.startswith(('http:', 'https:', 'ftp:')):
return urlopen(name).read()
else:
with open(name) as f:
 return f.read()

奇怪的是,这个方法中必须要输入一个元组作为参数。如果你恰巧有一个list 或者 set类型的选择项,要确保传递参数前先调用 tuple()将其转换为元组类型。比如:


>>> choices = ['http:', 'ftp:']
>>> url = 'http://www.python.org'
>>> 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 = 'spam.txt'
>>> filename[-4:] == '.txt'
True
>>> url = 'http://www.python.org'
>>> url[:5] == 'http:' or url[:6] == 'https:' or url[:4] == 'ftp:'
True
>>>

4、你可以能还想使用正则表达式去实现,比如:


>>> import re
>>> url = 'http://www.python.org'
>>> re.match('http:jhttps:jftp:', url)
<_sre.SRE_Match object at 0x101253098>
>>>

5、当和其他操作比如普通数据聚合相结合的时候 startswith()和endswith() 方法是很不错的。比如,下面这个语句检查某个文件夹中是否存在指定的文件类型:


if any(name.endswith(('.c', '.h')) for name in listdir(dirname)):
...

来源:https://blog.csdn.net/qq_29422251/article/details/77775981

标签:python,字符串,开头,结尾
0
投稿

猜你喜欢

  • asp无组件实现画简单图形的类

    2004-06-17 13:30:00
  • 设计从"心"开始

    2011-05-21 08:37:00
  • SQL Server实现group_concat功能的详细实例

    2024-01-20 11:15:47
  • 浅析Python 字符编码与文件处理

    2021-09-27 05:30:09
  • PHP设计模式(八)装饰器模式Decorator实例详解【结构型】

    2023-11-24 05:59:31
  • FFmpeg视频处理入门教程(新手必看)

    2023-08-19 05:29:38
  • MySQL数据库的授权原则

    2008-12-29 13:39:00
  • 如何将Python脚本打包成exe应用程序介绍

    2021-12-26 20:42:07
  • javascript 通用滑动门tab类

    2023-08-05 09:42:25
  • ThinkPHP3.1.2 使用cli命令行模式运行的方法

    2023-11-14 12:56:27
  • AspJpeg 2.0组件使用教程(GIF篇)

    2008-12-16 19:37:00
  • nodejs简单实现TCP服务器端和客户端的聊天功能示例

    2024-05-03 15:55:56
  • 关于图片存储格式的整理(JPEG格式介绍)

    2023-04-05 12:25:37
  • 设计表单的标签和输入区

    2009-04-27 16:16:00
  • 在import scipy.misc 后找不到 imsave的解决方案

    2023-08-09 05:21:45
  • Python数据结构之图的存储结构详解

    2021-03-28 10:42:48
  • 基于Php mysql存储过程的详解

    2024-06-05 09:22:00
  • PLSQL导入dmp文件的详细完整步骤

    2023-06-26 11:45:32
  • 微信小程序实现日期格式化

    2023-07-20 20:28:32
  • MySQL慢查询查找和调优测试

    2024-01-23 08:07:35
  • asp之家 网络编程 m.aspxhome.com