字符串处理是非常常用的技能,但 Python 内置字符串方法太多,常常遗忘,为了便于快速参考,特地依据 Python 3.5.1 给每个内置方法写了示例并进行了归类,便于大家索引。
PS: 可以点击概览内的绿色标题进入相应分类或者通过右侧边栏文章目录快速索引相应方法。
大小写转换
str.capitalize()
将首字母转换成大写,需要注意的是如果首字没有大写形式,则返回原字符串。
'adi dog'.capitalize()
'abcd 徐'.capitalize()
'徐 abcd'.capitalize()
'ß'.capitalize()
str.lower()
将字符串转换成小写,其仅对 ASCII 编码的字母有效。
'DOBI'.lower()
'ß'.lower() # 'ß' 为德语小写字母,其有另一种小写 'ss', lower 方法无法转换
'徐 ABCD'.lower()
str.casefold()
将字符串转换成小写,Unicode 编码中凡是有对应的小写形式的,都会转换。
'DOBI'.casefold()
'ß'.casefold() #德语中小写字母 ß 等同于小写字母 ss, 其大写为 SS
str.swapcase()
对字符串字母的大小写进行反转。
'徐Dobi a123 ß'.swapcase()
但需要注意的是 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()
'中文abc def 12gh'.title()
"they're bill's friends from the UK".title()
str.upper()
将字符串所有字母变为大写,会自动忽略不可转成大写的字符。
'中文abc def 12gh'.upper()
需要注意的是 s.upper().isupper() 不一定为 True。
字符串格式输出
str.center(width[, fillchar])
将字符串按照给定的宽度居中显示,可以给定特定的字符填充多余的长度,如果指定的长度小于字符串长度,则返回原字符串。
'12345'.center(10, '*')
'12345'.center(10)
str.ljust(width[, fillchar]); str.rjust(width[, fillchar])
返回指定长度的字符串,字符串内容居左(右)如果长度小于字符串长度,则返回原始字符串,默认填充为 ASCII 空格,可指定填充的字符串。
'dobi'.ljust(10)
'dobi'.ljust(10, '~')
'dobi'.ljust(3, '~')
'dobi'.ljust(3)
str.zfill(width)
用 '0' 填充字符串,并返回指定宽度的字符串。
"42".zfill(5)
"-42".zfill(5)
'dd'.zfill(5)
'--'.zfill(5)
' '.zfill(5)
''.zfill(5)
'dddddddd'.zfill(5)
str.expandtabs(tabsize=8)
用指定的空格替代横向制表符,使得相邻字符串之间的间距保持在指定的空格数以内。
tab = '1\t23\t456\t7890\t1112131415\t161718192021'
tab.expandtabs()
tab.expandtabs(4)
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)
字符串搜索定位与替换
str.count(sub[, start[, end]])
text = 'outer protective covering'
text.count('e')
text.count('e', 5, 11)
text.count('e', 5, 10)
str.find(sub[, start[, end]]); str.rfind(sub[, start[, end]])
text = 'outer protective covering'
text.find('er')
text.find('to')
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]: -1
str.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 wow wow jiao'.replace('wow', 'wang', 1)
'dog wow wow jiao'.replace('wow', 'wang', 0)
'dog wow wow jiao'.replace('wow', 'wang', 2)
'dog wow wow jiao'.replace('wow', 'wang', 3)
str.lstrip([chars]); str.rstrip([chars]); str.strip([chars])
' dobi'.lstrip()
'db.kun.ac.cn'.lstrip('dbk')
' dobi '.rstrip()
'db.kun.ac.cn'.rstrip('acn')
' dobi '.strip()
'db.kun.ac.cn'.strip('db.c')
'db.kun.ac.cn'.strip('cbd.un')
static str.maketrans(x[, y[, z]]); str.translate(table)
maktrans 是一个静态方法,用于生成一个对照表,以供 translate 使用。
如果 maktrans 仅一个参数,则该参数必须是一个字典,字典的 key 要么是一个 Unicode 编码(一个整数),要么是一个长度为 1 的字符串,字典的 value 则可以是任意字符串、None或者 Unicode 编码。
a = 'dobi'
ord('o')
ord('a')
hex(ord('狗'))
b = {'d':'dobi', 111:' is ', 'b':97, 'i':'\u72d7\u72d7'}
table = str.maketrans(b)
a.translate(table)
如果 maktrans 有两个参数,则两个参数形成映射,且两个字符串必须是长度相等;如果有第三个参数,则第三个参数也必须是字符串,该字符串将自动映射到 None:
a = 'dobi is a dog'
table = str.maketrans('dobi', 'alph')
a.translate(table)
table = str.maketrans('dobi', 'alph', 'o')
a.translate(table)
字符串的联合与分割
str.join(iterable)
用指定的字符串,连接元素为字符串的可迭代对象。
'-'.join(['2012', '3', '12'])
'-'.join([2012, 3, 12])
'-'.join(['2012', '3', b'12']) #bytes 为非字符串
'-'.join(['2012'])
'-'.join([])
'-'.join([None])
'-'.join([''])
','.join({'dobi':'dog', 'polly':'bird'})
','.join({'dobi':'dog', 'polly':'bird'}.values())
str.partition(sep); str.rpartition(sep)
'dog wow wow jiao'.partition('wow')
'dog wow wow jiao'.partition('dog')
'dog wow wow jiao'.partition('jiao')
'dog wow wow jiao'.partition('ww')
'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'.split(',', maxsplit=1), '1,2,3'.rsplit(',', maxsplit=1)
'1 2 3'.split(), '1 2 3'.rsplit()
'1 2 3'.split(maxsplit=1), '1 2 3'.rsplit(maxsplit=1)
' 1 2 3 '.split()
'1,2,,3,'.split(','), '1,2,,3,'.rsplit(',')
''.split()
''.split('a')
'bcd'.split('a')
'bcd'.split(None)
str.splitlines([keepends])
字符串以行界符为分隔符拆分为列表;当 keepends 为True,拆分后保留行界符,能被识别的行界符见官方文档。
'ab c\n\nde fg\rkl\r\n'.splitlines()
'ab c\n\nde fg\rkl\r\n'.splitlines(keepends=True)
"".splitlines(), ''.split('\n') #注意两者的区别
"One line\n".splitlines()
字符串条件判断
str.endswith(suffix[, start[, end]]); str.startswith(prefix[, start[, end]])
text = 'outer protective covering'
text.endswith('ing')
text.endswith(('gin', 'ing'))
text.endswith('ter', 2, 5)
text.endswith('ter', 2, 4)
str.isalnum()
字符串和数字的任意组合,即为真,简而言之:
只要 c.isalpha(), c.isdecimal(), c.isdigit(), c.isnumeric() 中任意一个为真,则 c.isalnum() 为真。
'dobi'.isalnum()
'dobi123'.isalnum()
'123'.isalnum()
'徐'.isalnum()
'dobi_123'.isalnum()
'dobi 123'.isalnum()
'%'.isalnum()
str.isalpha()
Unicode 字符数据库中作为 "Letter"(这些字符一般具有 "Lm", "Lt", "Lu", "Ll", or "Lo" 等标识,不同于 Alphabetic) 的,均为真。
'dobi'.isalpha()
'do bi'.isalpha()
'dobi123'.isalpha()
'徐'.isalpha()
str.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()
num = '\u00B2'
print(num)
num.isdecimal(), num.isdigit(), num.isnumeric()
num = "1" #unicode
num.isdecimal(), num.isdigit(), num.isnumeric()
num = "'Ⅶ'"
num.isdecimal(), num.isdigit(), num.isnumeric()
num = "十"
num.isdecimal(), num.isdigit(), num.isnumeric()
num = b"1" # byte
num.isdigit() # True
num.isdecimal() # AttributeError 'bytes' object has no attribute 'isdecimal'
num.isnumeric() # AttributeError 'bytes' object has no attribute 'isnumeric'
str.isidentifier()
判断字符串是否可为合法的标识符。
'def'.isidentifier()
'with'.isidentifier()
'false'.isidentifier()
'dobi_123'.isidentifier()
'dobi 123'.isidentifier()
'123'.isidentifier()
str.islower()
'徐'.islower()
'ß'.islower() #德语大写字母
'a徐'.islower()
'ss'.islower()
'23'.islower()
'Ab'.islower()
str.isprintable()
判断字符串的所有字符都是可打印字符或字符串为空。Unicode 字符集中 "Other" "Separator" 类别的字符为不可打印的字符(但不包括 ASCII 的空格(0x20))。
'dobi123'.isprintable()
'dobi123\n'.isprintable()
Out[24]: False
'dobi 123'.isprintable()
'dobi.123'.isprintable()
''.isprintable()
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()
'How Python WORKS'.istitle()
'how python works'.istitle()
'How Python Works'.istitle()
' '.istitle()
''.istitle()
'A'.istitle()
'a'.istitle()
'甩甩Abc Def 123'.istitle()
str.isupper()
'徐'.isupper()
'DOBI'.isupper()
Out[41]: True
'Dobi'.isupper()
'DOBI123'.isupper()
'DOBI 123'.isupper()
'DOBI\t 123'.isupper()
'DOBI_123'.isupper()
'_123'.isupper()
字符串编码
str.encode(encoding="utf-8", errors="strict")
fname = '徐'
fname.encode('ascii')
fname.encode('ascii', 'replace')
fname.encode('ascii', 'ignore')
fname.encode('ascii', 'xmlcharrefreplace')
fname.encode('ascii', 'backslashreplace')
Copyright© 2013-2020
All Rights Reserved 京ICP备2023019179号-8