Python使用split使用多个字符分隔字符串,pythonsplit,Python的str类有
Python使用split使用多个字符分隔字符串,pythonsplit,Python的str类有
Python的str类有split方法,但是这个split方法只能根据指定的某个字符分隔字符串,如果要同时指定多个字符来分隔字符串,该怎么办呢?
幸运的是python的re模块中提供的split方法可以用来做这件事情,如下代码示例:
import rere.split('; |, ',str)
例如:
>>> a='Beautiful, is; better*than\nugly'>>> import re>>> re.split('; |, |\*|\n',a)['Beautiful', 'is', 'better', 'than', 'ugly']
相关内容
- python使用gc.get_objects()查看运行时对象,,从python2.2开始
- Python计算单词距离代码,python计算单词,#!/usr/bin/e
- Python处理gzip压缩过的网页,python处理gzip压缩,大多数网
- Python判断一个数字是否为素数,python素数,如下代码判断
- python urllib2使用ProxyHandler通过代理访问网页,,在urllib
- python webpy 输出json响应,webpyjson,webpy输出json首
- webpy获得用户post或者get的数据,上传文件示例,webpyp
- python getaddrinfo() 基本使用代码,pythongetaddrinfo,import sy
- Execute a function on multiple argument sets in parallel using a thre
- python urllib.urlopen获得response后检查http响应头中的conten
评论关闭