Python内置的字符串处理函数整理


Posted in Python onJanuary 29, 2013

str='python String function'

生成字符串变量str='python String function'

字符串长度获取:len(str)
例:print '%s length=%d' % (str,len(str))

字母处理
全部大写:str.upper()
全部小写:str.lower()
大小写互换:str.swapcase()
首字母大写,其余小写:str.capitalize()
首字母大写:str.title()
print '%s lower=%s' % (str,str.lower())
print '%s upper=%s' % (str,str.upper())
print '%s swapcase=%s' % (str,str.swapcase())
print '%s capitalize=%s' % (str,str.capitalize())
print '%s title=%s' % (str,str.title())
格式化相关
获取固定长度,右对齐,左边不够用空格补齐:str.ljust(width)
获取固定长度,左对齐,右边不够用空格补齐:str.ljust(width)
获取固定长度,中间对齐,两边不够用空格补齐:str.ljust(width)
获取固定长度,右对齐,左边不足用0补齐
print '%s ljust=%s' % (str,str.ljust(20))
print '%s rjust=%s' % (str,str.rjust(20))
print '%s center=%s' % (str,str.center(20))
print '%s zfill=%s' % (str,str.zfill(20))

字符串搜索相关
搜索指定字符串,没有返回-1:str.find('t')
指定起始位置搜索:str.find('t',start)
指定起始及结束位置搜索:str.find('t',start,end)
从右边开始查找:str.rfind('t')
搜索到多少个指定字符串:str.count('t')
上面所有方法都可用index代替,不同的是使用index查找不到会抛异常,而find返回-1
print '%s find nono=%d' % (str,str.find('nono'))
print '%s find t=%d' % (str,str.find('t'))
print '%s find t from %d=%d' % (str,1,str.find('t',1))
print '%s find t from %d to %d=%d' % (str,1,2,str.find('t',1,2))
#print '%s index nono ' % (str,str.index('nono',1,2))
print '%s rfind t=%d' % (str,str.rfind('t'))
print '%s count t=%d' % (str,str.count('t'))

字符串替换相关
替换old为new:str.replace('old','new')
替换指定次数的old为new:str.replace('old','new',maxReplaceTimes)
print '%s replace t to *=%s' % (str,str.replace('t', '*'))
print '%s replace t to *=%s' % (str,str.replace('t', '*',1))

字符串去空格及去指定字符
去两边空格:str.strip()
去左空格:str.lstrip()
去右空格:str.rstrip()
去两边字符串:str.strip('d'),相应的也有lstrip,rstrip
str=' python String function '
print '%s strip=%s' % (str,str.strip())
str='python String function'
print '%s strip=%s' % (str,str.strip('d'))

按指定字符分割字符串为数组:str.split(' ')

默认按空格分隔
str='a b c de'
print '%s strip=%s' % (str,str.split())
str='a-b-c-de'
print '%s strip=%s' % (str,str.split('-'))

字符串判断相关
是否以start开头:str.startswith('start')
是否以end结尾:str.endswith('end')
是否全为字母或数字:str.isalnum()
是否全字母:str.isalpha()
是否全数字:str.isdigit()
是否全小写:str.islower()
是否全大写:str.isupper()
str='python String function'
print '%s startwith t=%s' % (str,str.startswith('t'))
print '%s endwith d=%s' % (str,str.endswith('d'))
print '%s isalnum=%s' % (str,str.isalnum())
str='pythonStringfunction'
print '%s isalnum=%s' % (str,str.isalnum())
print '%s isalpha=%s' % (str,str.isalpha())
print '%s isupper=%s' % (str,str.isupper())
print '%s islower=%s' % (str,str.islower())
print '%s isdigit=%s' % (str,str.isdigit())
str='3423'
print '%s isdigit=%s' % (str,str.isdigit())

还有其他常见的Python字符串处理 函数的话不定期更新。

Python 相关文章推荐
python2.7删除文件夹和删除文件代码实例
Dec 18 Python
朴素贝叶斯算法的python实现方法
Nov 18 Python
Python简单删除目录下文件以及文件夹的方法
May 27 Python
Python中几个比较常见的名词解释
Jul 04 Python
教你使用python画一朵花送女朋友
Mar 29 Python
Python切片索引用法示例
May 15 Python
Python读取excel指定列生成指定sql脚本的方法
Nov 28 Python
分享Python切分字符串的一个不错方法
Dec 14 Python
python爬虫简单的添加代理进行访问的实现代码
Apr 04 Python
Python实现使用dir获取类的方法列表
Dec 24 Python
如何基于Python爬取隐秘的角落评论
Jul 02 Python
python代数式括号有效性检验示例代码
Oct 04 Python
python每次处理固定个数的字符的方法总结
Jan 29 #Python
python设置windows桌面壁纸的实现代码
Jan 28 #Python
python连接sql server乱码的解决方法
Jan 28 #Python
python定时检查启动某个exe程序适合检测exe是否挂了
Jan 21 #Python
Python实现的金山快盘的签到程序
Jan 17 #Python
多线程爬虫批量下载pcgame图片url 保存为xml的实现代码
Jan 17 #Python
Python高效编程技巧
Jan 07 #Python
You might like
PHP防注入安全代码
2008/04/09 PHP
php 各种应用乱码问题的解决方法
2010/05/09 PHP
php使用数组填充下拉列表框的方法
2015/03/31 PHP
php实现统计网站在线人数的方法
2015/05/12 PHP
php实现base64图片上传方式实例代码
2017/02/22 PHP
php检测mysql表是否存在的方法小结
2017/07/20 PHP
JS实现页面超时后自动跳转到登陆页面
2015/01/19 Javascript
Javascript 拖拽的一些高级的应用(逐行分析代码,让你轻松了拖拽的原理)
2015/01/23 Javascript
JS动态添加Table的TR,TD实现方法
2015/01/28 Javascript
jQuery页面刷新(局部、全部)问题分析
2016/01/09 Javascript
ES6中非常实用的新特性介绍
2016/03/10 Javascript
简单分析javascript中的函数
2016/09/10 Javascript
JS实现浏览器打印、打印预览示例
2017/02/28 Javascript
深入剖析Express cookie-parser中间件实现示例
2018/02/01 Javascript
搭建基于express框架运行环境的方法步骤
2018/11/15 Javascript
D3.js(v3)+react 实现带坐标与比例尺的柱形图 (V3版本)
2019/05/09 Javascript
Vue解析剪切板图片并实现发送功能
2020/02/04 Javascript
Element Steps步骤条的使用方法
2020/07/26 Javascript
[01:35]2014DOTA2西雅图邀请赛 专访狐狸妈青春献给刀塔
2014/07/08 DOTA
Python实现测试磁盘性能的方法
2015/03/12 Python
Python类的用法实例浅析
2015/05/27 Python
Python实现查找系统盘中需要找的字符
2015/07/14 Python
python魔法方法-自定义序列详解
2016/07/21 Python
在ubuntu16.04中将python3设置为默认的命令写法
2018/10/31 Python
pandas.cut具体使用总结
2019/06/24 Python
解决json中ensure_ascii=False的问题
2020/04/03 Python
python简单利用字典破解zip文件口令
2020/09/07 Python
html5 制作地图当前定位箭头的方法示例
2020/01/10 HTML / CSS
简述Linux文件系统通过i节点把文件的逻辑结构和物理结构转换的工作过程
2016/01/06 面试题
2014年秋季开学典礼致辞
2014/08/02 职场文书
小学生迎国庆演讲稿
2014/09/05 职场文书
2014年保卫部工作总结
2014/11/21 职场文书
领导离职感言
2015/08/03 职场文书
ORACLE查看当前账号的相关信息
2021/06/18 Oracle
MySQL系列之九 mysql查询缓存及索引
2021/07/02 MySQL
Redis分布式锁Redlock的实现
2021/08/07 Redis