8种常用字符串处理函数

方法及使用 功能描述
str.lower() 以全部字符小写形式返回字符串
例子1 "AbCdEfGh".lower() 结果为:"abcdefgh"
str.upper() 以全部字符大写形式返回字符串
例子2 "AbCdEfGh".lower() 结果为:"ABCDEFGH"
str.split(sep=None) 返回一个列表,由str根据sep被分隔的部分组成
例子3 "A,B,C".split(",") 结果为:['A','B','C']
str.count(sub) 返回字符串sub在str中出现的次数
例子4 “an apple a day”.count("a") 结果为:4
str.replace(old,new) 以所有old字符串被替换成new形式返回字符串str
例子5 "python".replace("n","n123.io") 结果为:"python123.io"
str.center(width,[fillchar]) 字符串str根据宽度width居中,fillchar参数可选
例子6 “python'.center(20,"=") 结果为:'=======python======='
str.strip(chars) 从str中去掉在其左侧和右侧chars中列出的字符
例子7 “= python =".strip(" =np") 结果为:“ytho”
str.join(iter) 在iter变量中除最后元素外每个元素增加一个str
例子8 ",".join("12345") 结果为:“1,2,3,4,5”

你可能感兴趣的:(8种常用字符串处理函数)