Python字符串的处理


平时使用Python都是处理一些脚本,其中使用频率最大的就是字符串的处理方面,因此整理一些常用的字符串处理使用方法,学习备用。


字符串基本操作

切片

# str[beg:end]
# (下标从 0 开始)从下标为beg开始算起,切取到下标为 end-1 的元素,切取的区间为 [beg, end)
str = ' python str '
print str[3:6]    # tho
# str[beg:end:step]
# 取 [beg, end) 之间的元素,每隔 step 个取一个
print str[2:7:2]  # yhn

原始字符串

# 在字符串前加 r/R
# 所有的字符串都是直接按照字面的意思来使用,没有转义特殊或不能打印的字符
print r'\n'   # \n

字符串重复

# str * n, n * str
# n 为一个 int 数字
str = "hi"
print str*2   # hihi
print 2*str   # hihi

in

str = ' python'
print 'p' in str    # True
print 'py' in str   # True
print 'py' not in str # False

字符串常用函数

去空格

str = ' python str '
print str
# 去首尾空格
print str.strip()
# 去左侧空格
print str.lstrip()
# 去右侧空格
print str.rstrip()

分隔字符串

str = ' 1 , 2 , 3 , 4 , 5 , '
# 默认使用空格分隔
print str.split()   # ['1', ',', '2', ',', '3', ',', '4', ',', '5', ',']
# 指定使用空格进行分隔,首尾如果有空格,则会出现在结果中
print str.split(' ') # ['', '1', ',', '2', ',', '3', ',', '4', ',', '5', ',', '']
# 指定其他字符串进行分隔
print str.split(',') # [' 1 ', ' 2 ', ' 3 ', ' 4 ', ' 5 ', ' ']
print str.split('3 ,') # [' 1 , 2 , ', ' 4 , 5 , ']
str = 'mississippi'
print str.rstrip('ip')
# 取行, python 中把 "\r","\n","\r\n",作为行分隔符
str = 'ab c\n\nde fg\rkl\r\n'
print str.splitlines()      # ['ab c', '', 'de fg', 'kl']
print str.splitlines(True)  # ['ab c\n', '\n', 'de fg\r', 'kl\r\n']

拼接字符串

# str.join()方法用于将序列中的元素以指定的字符连接生成一个新的字符串。
str = '-'
seq = ("a", "b", "c"); # 字符串序列
print str.join(seq)  # 'a-b-c'

统计字符串里某个字符出现的次数

# str.count(sub, start= 0,end=len(string))
str = "thing example....wow!!!"
print str.count('i', 0, 5)  # 1
print str.count('e')  # 2

检测字符串中是否包含子字符串

# str.find(str, beg=0, end=len(string))
# 如果包含子字符串返回开始的索引值,否则返回-1。
str1 = "this is string example....wow!!!"
str2 = "exam"
print str1.find(str2)      # 15
print str1.find(str2, 10)  # 15
print str1.find(str2, 40)  # -1

# str.index(str, beg=0, end=len(string))
# 如果包含子字符串返回开始的索引值,否则抛出异常。
print str1.index(str2)     # 15
print str1.index(str2, 10) # 15
print str1.index(str2, 40)
# Traceback (most recent call last):
#   File "test.py", line 8, in
#   print str1.index(str2, 40);
#   ValueError: substring not found
# shell returned 1

# str.rfind(str, beg=0, end=len(string))
# str.rindex(str, beg=0, end=len(string))

判断字符串是否以指定前缀、后缀结尾

# str.startswith(str, beg=0,end=len(string))
# 检查字符串以指定子字符串开头,如果是则返回 True,否则返回 False
str = "this is string example....wow!!!"
print str.startswith( 'this' );       # True
print str.startswith( 'is', 2, 4 )    # True
print str.startswith( 'this', 2, 4 )  # False

# str.endswith(suffix[, start[, end]])
# 以指定后缀结尾返回True,否则返回False
suffix = "wow!!!"
print str.endswith(suffix);         # True
print str.endswith(suffix,20);      # True
suffix = "is";
print str.endswith(suffix, 2, 4);   # True
print str.endswith(suffix, 2, 6);   # False

根据指定的分隔符将字符串进行分割

# str.partition(del)
# 返回一个3元的元组,第一个为分隔符左边的子串,第二个为分隔符本身,第三个为分隔符右边的子串。
str = "http://www.baidu.com/"
print str.partition("://")   # ('http', '://', 'www.baidu.com/')
# string.rpartition(str)   从右边开始

替换字符串

# str.replace(old, new[, max])
# 字符串中的 old(旧字符串) 替换成 new(新字符串),如果指定第三个参数max,则替换不超过 max 次。
str = "thing example....wow!!! thisslly string";
print str.replace("is", "was");     # thwas was string example....wow!!! thwas was really string
print str.replace("is", "was", 3);  # thwas was string example....wow!!! thwas is really string
# str.expandtabs(tabsize=8)
# 把字符串中的 tab 符号('\t')转为空格,tab 符号('\t')默认的空格数是 8

检测字符串组成

# 检测数字
str.isdigit()    # 检测字符串是否只由数字组成
str.isnumeric()  # 检测字符串是否只由数字组成,这种方法是只针对unicode对象
str.isdecimal()  # 检查字符串是否只包含十进制字符。这种方法只存在于unicode对象
# 检测字母
str.isalpha()   # 检测字符串是否只由字母组成
# 检测字母和数字
str.isalnum()   # 检测字符串是否由字母和数字组成
# 检测其他
str.isspace()   # 检测字符串是否只由空格组成
str.islower()   # 检测字符串是否由小写字母组成
str.isupper()   # 检测字符串中所有的字母是否都为大写
str.istitle()   # 检测字符串中所有的单词拼写首字母是否为大写,且其他字母为小写

字符串处理

str.capitalize()   # 将字符串的第一个字母变成大写,其他字母变小写
str.lower()        # 转换字符串中所有大写字符为小写
str.upper()        # 将字符串中的小写字母转为大写字母
str.swapcase()     # 对字符串的大小写字母进行转换
max(str)    # 返回字符串 str 中最大的字母
min(str)    # 返回字符串 str 中最小的字母
len(str)    # 返回字符串的长度
str(arg) # 将 arg 转换为 string

格式化输出

居中填充

# str.center(width[, fillchar])
# 返回一个原字符串居中,并使用空格填充至长度 width 的新字符串。默认填充字符为空格
str = "this is string example....wow!!!"
print str.center(40, 'a')   # aaaathis is string  example....wow!!!aaaa

靠右填充

# str.zfill(width)
# 返回指定长度的字符串,原字符串右对齐,前面填充0
str = "this is string example....wow!!!"
print str.zfill(40)   # 00000000this is string example....wow!!!

输出格式

print "My name is %s and weight is %d kg!" % ('Zara', 21)
# My name is Zara and weight is 21 kg!
print '%(language)s has %(number)03d quote types.' % {"language": "Python", "number": 2}
# Python has 002 quote types.
# str.format(*args, **kwargs)
print '{0}, {1}, {2}'.format('a', 'b', 'c')  # a, b, c
print '{1}, {0}, {2}'.format('a', 'b', 'c')  # b, a, c
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,542评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,596评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,021评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,682评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,792评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,985评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,107评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,845评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,299评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,612评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,747评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,441评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,072评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,828评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,069评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,545评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,658评论 2 350

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,637评论 18 139
  • 本节要介绍的是Python里面常用的几种数据结构。通常情况下,声明一个变量只保存一个值是远远不够的,我们需要将一组...
    小黑y99阅读 65,191评论 0 9
  • Python转义字符 在需要在字符中使用特殊字符时,python用反斜杠(\)转义字符。如下表: 转义字符描述 \...
    南少cc阅读 1,956评论 0 3
  • 窈窕淑女,君子好逑 或许曾经,我们都是“窈窕淑女” 却在岁月的涤荡中 不小心活成了“铁骨铮铮”的女汉子 想当初 弱...
    言苏伦阅读 909评论 0 1
  • 现在就来让我说说今天比较开森的事情吧,哦!不 已经是昨天了。虽然知道熬夜不好,可是好像已经养成习惯了呢。。尽量改正...
    cherry的幻想阅读 306评论 0 0