本文主要给大家介绍了下python的一些内置字符串的方法,包括概览,字符串大小写转换,字符串格式输出,字符串搜索定位与替换,字符串的联合与分割,字符串条件判断,字符串编码
字符串处理是非常常用的技能,但 python 内置字符串方法太多,常常遗忘,为了便于快速参考,特地依据 python 3.5.1 给每个内置方法写了示例并进行了归类,便于大家索引。
ps: 可以点击概览内的绿色标题进入相应分类或者通过右侧边栏文章目录快速索引相应方法。
大小写转换
str.capitalize()
将首字母转换成大写,需要注意的是如果首字没有大写形式,则返回原字符串。
‘adi dog’.capitalize()# ‘adi dog’
‘abcd 徐’.capitalize()# ‘abcd 徐’
‘徐 abcd’.capitalize()# ‘徐 abcd’
‘ß’.capitalize()# ‘ss’
str.lower()
将字符串转换成小写,其仅对 ascii 编码的字母有效。
‘dobi’.lower()# ‘dobi’
‘ß’.lower() # ‘ß’ 为德语小写字母,其有另一种小写 ‘ss’, lower 方法无法转换# ‘ß’
‘徐 abcd’.lower()# ‘徐 abcd’
str.casefold()
将字符串转换成小写,unicode 编码中凡是有对应的小写形式的,都会转换。
‘dobi’.casefold()# ‘dobi’
‘ß’.casefold() #德语中小写字母 ß 等同于小写字母 ss, 其大写为 ss # ‘ss’
str.swapcase()
对字符串字母的大小写进行反转。
‘徐dobi a123 ß’.swapcase()#: ‘徐dobi a123 ss’ 这里的 ß 被转成 ss 是一种大写但需要注意的是 s.swapcase().swapcase() == s 不一定为真:
u’\xb5’# ‘µ’
u’\xb5′.swapcase()# ‘Μ’
u’\xb5′.swapcase().swapcase()# ‘μ’
hex(ord(u’\xb5′.swapcase().swapcase()))out[154]: ‘0x3bc’
这里 ‘Μ'(是 mu 不是 m) 的小写正好与 ‘μ’ 的写法一致。
str.title()
将字符串中每个“单词”首字母大写。其判断“单词”的依据则是基于空格和标点,所以应对英文撇好所有格或一些英文大写的简写时,会出错。
‘hello world’.title()# ‘hello world’
‘中文abc def 12gh’.title()# ‘中文abc def 12gh’
# 但这个方法并不完美:”they’re bill’s friends from the uk”.title()# “they’re bill’s friends from the uk”
str.upper()
将字符串所有字母变为大写,会自动忽略不可转成大写的字符。
‘中文abc def 12gh’.upper()# ‘中文abc def 12gh’需要注意的是 s.upper().isupper() 不一定为 true。
字符串格式输出
str.center(width[, fillchar])将字符串按照给定的宽度居中显示,可以给定特定的字符填充多余的长度,如果指定的长度小于字符串长度,则返回原字符串。
‘12345’.center(10, ‘*’)# ‘**12345***’
‘12345’.center(10)# ‘ 12345 ‘str.ljust(width[, fillchar]); str.rjust(width[, fillchar])
返回指定长度的字符串,字符串内容居左(右)如果长度小于字符串长度,则返回原始字符串,默认填充为 ascii 空格,可指定填充的字符串。
‘dobi’.ljust(10)# ‘dobi ‘
‘dobi’.ljust(10, ‘~’)# ‘dobi~~~~~~’
‘dobi’.ljust(3, ‘~’)# ‘dobi’
‘dobi’.ljust(3)# ‘dobi’str.zfill(width)
用 ‘0’ 填充字符串,并返回指定宽度的字符串。
“42”.zfill(5)# ‘00042’”-42″.zfill(5)# ‘-0042’
‘dd’.zfill(5)# ‘000dd’
‘–‘.zfill(5)# ‘-000-‘
‘ ‘.zfill(5)# ‘0000 ‘
”.zfill(5)# ‘00000’
‘dddddddd’.zfill(5)# ‘dddddddd’str.expandtabs(tabsize=8)用指定的空格替代横向制表符,使得相邻字符串之间的间距保持在指定的空格数以内。
tab = ‘1\t23\t456\t7890\t1112131415\t161718192021’
tab.expandtabs()# ‘1 23 456 7890 1112131415 161718192021’# ‘123456781234567812345678123456781234567812345678’ 注意空格的计数与上面输出位置的关系
tab.expandtabs(4)# ‘1 23 456 7890 1112131415 161718192021’# ‘12341234123412341234123412341234’ str.format(^args, ^^kwargs)
格式化字符串的语法比较繁多,官方文档已经有比较详细的 examples,这里就不写例子了,想了解的童鞋可以直接戳这里 format examples.
str.format_map(mapping)
类似 str.format(*args, **kwargs) ,不同的是 mapping 是一个字典对象。
people = {‘name’:’john’, ‘age’:56}
‘my name is {name},i am {age} old’.format_map(people)# ‘my name is john,i am 56 old’
字符串搜索定位与替换
str.count(sub[, start[, end]])text = ‘outer protective covering’
text.count(‘e’)# 4
text.count(‘e’, 5, 11)# 1
text.count(‘e’, 5, 10)# 0str.find(sub[, start[, end]]); str.rfind(sub[, start[, end]])text = ‘outer protective covering’
text.find(‘er’)# 3
text.find(‘to’)# -1
text.find(‘er’, 3)out[121]: 3
text.find(‘er’, 4)out[122]: 20
text.find(‘er’, 4, 21)out[123]: -1
text.find(‘er’, 4, 22)out[124]: 20
text.rfind(‘er’)out[125]: 20
text.rfind(‘er’, 20)out[126]: 20
text.rfind(‘er’, 20, 21)out[129]: -1str.index(sub[, start[, end]]); str.rindex(sub[, start[, end]])与 find() rfind() 类似,不同的是如果找不到,就会引发 valueerror。
str.replace(old, new[, count])’dog wow wow jiao’.replace(‘wow’, ‘wang’)# ‘dog wang wang jiao’
‘dog wow wow jiao’.replace(‘wow’, ‘wang’, 1)# ‘dog wang wow jiao’
‘dog wow wow jiao’.replace(‘wow’, ‘wang’, 0)# ‘dog wow wow jiao’
‘dog wow wow jiao’.replace(‘wow’, ‘wang’, 2)# ‘dog wang wang jiao’
‘dog wow wow jiao’.replace(‘wow’, ‘wang’, 3)# ‘dog wang wang jiao’str.lstrip([chars]); str.rstrip([chars]); str.strip([chars])’ dobi’.lstrip()# ‘dobi”db.kun.ac.cn’.lstrip(‘dbk’)# ‘.kun.ac.cn’
‘ dobi ‘.rstrip()# ‘ dobi”db.kun.ac.cn’.rstrip(‘acn’)# ‘db.kun.ac.’
‘ dobi ‘.strip()# ‘dobi”db.kun.ac.cn’.strip(‘db.c’)# ‘kun.ac.cn”db.kun.ac.cn’.strip(‘cbd.un’)# ‘kun.a’static str.maketrans(x[, y[, z]]); str.translate(table)maktrans 是一个静态方法,用于生成一个对照表,以供 translate 使用。如果 maktrans 仅一个参数,则该参数必须是一个字典,字典的 key 要么是一个 unicode 编码(一个整数),要么是一个长度为 1 的字符串,字典的 value 则可以是任意字符串、none或者 unicode 编码。
a = ‘dobi’ord(‘o’)# 111
ord(‘a’)# 97
hex(ord(‘狗’))# ‘0x72d7’
b = {‘d’:’dobi’, 111:’ is ‘, ‘b’:97, ‘i’:’\u72d7\u72d7′}table = str.maketrans(b)
a.translate(table)# ‘dobi is a狗狗’
如果 maktrans 有两个参数,则两个参数形成映射,且两个字符串必须是长度相等;如果有第三个参数,则第三个参数也必须是字符串,该字符串将自动映射到 none:
a = ‘dobi is a dog’
table = str.maketrans(‘dobi’, ‘alph’)
a.translate(table)# ‘alph hs a alg’
table = str.maketrans(‘dobi’, ‘alph’, ‘o’)
a.translate(table)# ‘aph hs a ag’
字符串的联合与分割
str.join(iterable)
用指定的字符串,连接元素为字符串的可迭代对象。
‘-‘.join([‘2012’, ‘3’, ’12’])# ‘2012-3-12’
‘-‘.join([2012, 3, 12])# typeerror: sequence item 0: expected str instance, int found
‘-‘.join([‘2012’, ‘3’, b’12’]) #bytes 为非字符串# typeerror: sequence item 2: expected str instance, bytes found
‘-‘.join([‘2012’])# ‘2012’
‘-‘.join([])# ”
‘-‘.join([none])# typeerror: sequence item 0: expected str instance, nonetype found
‘-‘.join([”])# ”
‘,’.join({‘dobi’:’dog’, ‘polly’:’bird’})# ‘dobi,polly’
‘,’.join({‘dobi’:’dog’, ‘polly’:’bird’}.values())# ‘dog,bird’str.partition(sep); str.rpartition(sep)’dog wow wow jiao’.partition(‘wow’)# (‘dog ‘, ‘wow’, ‘ wow jiao’)
‘dog wow wow jiao’.partition(‘dog’)# (”, ‘dog’, ‘ wow wow jiao’)
‘dog wow wow jiao’.partition(‘jiao’)# (‘dog wow wow ‘, ‘jiao’, ”)
‘dog wow wow jiao’.partition(‘ww’)# (‘dog wow wow jiao’, ”, ”)
‘dog wow wow jiao’.rpartition(‘wow’)out[131]: (‘dog wow ‘, ‘wow’, ‘ jiao’)
‘dog wow wow jiao’.rpartition(‘dog’)out[132]: (”, ‘dog’, ‘ wow wow jiao’)
‘dog wow wow jiao’.rpartition(‘jiao’)out[133]: (‘dog wow wow ‘, ‘jiao’, ”)
‘dog wow wow jiao’.rpartition(‘ww’)out[135]: (”, ”, ‘dog wow wow jiao’)str.split(sep=none, maxsplit=-1); str.rsplit(sep=none, maxsplit=-1)’1,2,3′.split(‘,’), ‘1, 2, 3’.rsplit()# ([‘1’, ‘2’, ‘3’], [‘1,’, ‘2,’, ‘3’])
‘1,2,3’.split(‘,’, maxsplit=1), ‘1,2,3’.rsplit(‘,’, maxsplit=1)# ([‘1’, ‘2,3’], [‘1,2’, ‘3’])
‘1 2 3’.split(), ‘1 2 3’.rsplit()# ([‘1’, ‘2’, ‘3’], [‘1’, ‘2’, ‘3’])
‘1 2 3’.split(maxsplit=1), ‘1 2 3’.rsplit(maxsplit=1)# ([‘1’, ‘2 3’], [‘1 2’, ‘3’])
‘ 1 2 3 ‘.split()# [‘1’, ‘2’, ‘3’]
‘1,2,,3,’.split(‘,’), ‘1,2,,3,’.rsplit(‘,’)# ([‘1’, ‘2’, ”, ‘3’, ”], [‘1’, ‘2’, ”, ‘3’, ”])
”.split()# []”.split(‘a’)# [”]’bcd’.split(‘a’)# [‘bcd’]’bcd’.split(none)# [‘bcd’]str.splitlines([keepends])
字符串以行界符为分隔符拆分为列表;当 keepends 为true,拆分后保留行界符,能被识别的行界符见官方文档。
‘ab c\n\nde fg\rkl\r\n’.splitlines()# [‘ab c’, ”, ‘de fg’, ‘kl’]’ab c\n\nde fg\rkl\r\n’.splitlines(keepends=true)# [‘ab c\n’, ‘\n’, ‘de fg\r’, ‘kl\r\n’]
“”.splitlines(), ”.split(‘\n’) #注意两者的区别# ([], [”])”one line\n”.splitlines()# ([‘one line’], [‘two lines’, ”])
字符串条件判断
str.endswith(suffix[, start[, end]]); str.startswith(prefix[, start[, end]])text = ‘outer protective covering’
text.endswith(‘ing’)# true
text.endswith((‘gin’, ‘ing’))# truetext.endswith(‘ter’, 2, 5)# true
text.endswith(‘ter’, 2, 4)# false
str.isalnum()
字符串和数字的任意组合,即为真,简而言之:
只要 c.isalpha(), c.isdecimal(), c.isdigit(), c.isnumeric() 中任意一个为真,则 c.isalnum() 为真。
‘dobi’.isalnum()# true
‘dobi123’.isalnum()# true
‘123’.isalnum()# true
‘徐’.isalnum()# true
‘dobi_123’.isalnum()# false
‘dobi 123’.isalnum()# false
‘%’.isalnum()# falsestr.isalpha()unicode 字符数据库中作为 “letter”(这些字符一般具有 “lm”, “lt”, “lu”, “ll”, or “lo” 等标识,不同于 alphabetic) 的,均为真。
‘dobi’.isalpha()# true
‘do bi’.isalpha()# false
‘dobi123’.isalpha()# false
‘徐’.isalpha()# truestr.isdecimal(); str.isdigit(); str.isnumeric()三个方法的区别在于对 unicode 通用标识的真值判断范围不同:
isdecimal: nd,isdigit: no, nd,isnumeric: no, nd, nl
digit 与 decimal 的区别在于有些数值字符串,是 digit 却非 decimal ,具体戳 这里
num = ‘\u2155’print(num)# ⅕num.isdecimal(), num.isdigit(), num.isnumeric()# (false, false, true)
num = ‘\u00b2’print(num)# ²num.isdecimal(), num.isdigit(), num.isnumeric()# (false, true, true)
num = “1” #unicodenum.isdecimal(), num.isdigit(), num.isnumeric()# (ture, true, true)
num = “‘Ⅶ'” num.isdecimal(), num.isdigit(), num.isnumeric()# (false, false, true)
num = “十”num.isdecimal(), num.isdigit(), num.isnumeric()# (false, false, true)
num = b”1″ # bytenum.isdigit() # truenum.isdecimal() # attributeerror ‘bytes’ object has no attribute ‘isdecimal’num.isnumeric() # attributeerror ‘bytes’ object has no attribute ‘isnumeric’str.isidentifier()
判断字符串是否可为合法的标识符。
‘def’.isidentifier()# true
‘with’.isidentifier()# true
‘false’.isidentifier()# true
‘dobi_123’.isidentifier()# true
‘dobi 123’.isidentifier()# false
‘123’.isidentifier()# falsestr.islower()’徐’.islower()# false
‘ß’.islower() #德语大写字母# false
‘a徐’.islower()# true
‘ss’.islower()# true
’23’.islower()# false
‘ab’.islower()# false
str.isprintable()
判断字符串的所有字符都是可打印字符或字符串为空。unicode 字符集中 “other” “separator” 类别的字符为不可打印的字符(但不包括 ascii 的空格(0x20))。
‘dobi123’.isprintable()# true
‘dobi123\n’.isprintable()out[24]: false
‘dobi 123’.isprintable()# true
‘dobi.123’.isprintable()# true
”.isprintable()# true
str.isspace()
判断字符串中是否至少有一个字符,并且所有字符都是空白字符。
in [29]: ‘\r\n\t’.isspace()out[29]: true
in [30]: ”.isspace()out[30]: false
in [31]: ‘ ‘.isspace()out[31]: true
str.istitle()
判断字符串中的字符是否是首字母大写,其会忽视非字母字符。
‘how python works’.istitle()# true
‘how python works’.istitle()# false
‘how python works’.istitle()# false
‘how python works’.istitle()# true
‘ ‘.istitle()# false
”.istitle()# false
‘a’.istitle()# true
‘a’.istitle()# false
‘甩甩abc def 123′.istitle()# truestr.isupper()’徐’.isupper()# false
‘dobi’.isupper()out[41]: true
‘dobi’.isupper()# false
‘dobi123’.isupper()# true
‘dobi 123’.isupper()# true
‘dobi\t 123’.isupper()# true
‘dobi_123’.isupper()# true
‘_123’.isupper()# false
字符串编码
str.encode(encoding=”utf-8″, errors=”strict”)
fname = ‘徐’
fname.encode(‘ascii’)# unicodeencodeerror: ‘ascii’ codec can’t encode character ‘\u5f90’…
fname.encode(‘ascii’, ‘replace’)# b’?’
fname.encode(‘ascii’, ‘ignore’)# b”
fname.encode(‘ascii’, ‘xmlcharrefreplace’)# b’徐’
fname.encode(‘ascii’, ‘backslashreplace’)# b’\\u5f90′
更多python的内置字符串方法分析相关文章请关注php中文网!