add函数 (在后面追加字符串)
s1 =’hello’
s2 = s1.__add__(‘ boy!’)
print(s2)
#输出:hello boy!
contains(判断是否包含某字符串,包含则返回true)
s1 = ‘hello’
result = s1.__contains__(‘he’)
print(result)
#输出:true
eq(判断两个字符串是否相同,相同则返回true)
s1 = ‘hello’
s2 = ‘how’
result = s1.__eq__(s2)
print(result)
#输出:false
format
#占位
getattribute
#占位
getitem
#占位
getnewargs
#占位
ge (大于或等于)
print(‘b’.ge(‘a’))#输出:true
gt(大于)
print(‘b’.ge(‘a’))#输出:true
hash
#占位
iter
#占位
len(返回字符串长度)
print(‘abc’.len())#输出:3
le(小于或等于)
print(‘b’.le(‘a’))#输出:false
lt(小于)
print(‘b’.lt(‘a’))#输出:false
mod
#占位
mul
#占位
new
#占位
ne
#占位
repr
#占位
rmod
#占位
rmul
#占位
sizeof
#占位
str(返回自已)
print(‘abc’.__str__())
#输出:abc
capitalize(首字母大写)
s =
‘tom’print(s.capitalize())
#输出:tom
casefold(大写转换成小写)
s =
‘tom’print(s.casefold())#
输出:tom
center (指定长度和填充字符,内容居中,填充字符留空则为空格)
s =
‘tom’print(s.center(20,’-‘))
#输出:——–tom———
count(计算某个字符串出现的个数,第二个参数:起始位置,第三个参数:结束位置)
s =
‘aabbbcccccdd’print(s.count(‘cc’,3,11))
#输出:2
encode(编码)
s =
“中文”print(s.encode(‘gbk’))
#输出:b’\xd6\xd0\xce\xc4′
endswith(判断字符串是否以某个字符或字符串结尾的,第二个参数:起始位置,第三个参数:结束位置)
s =
‘projects’print(s.endswith(‘ts’))print(s.endswith(‘e’,0,5))
#输出:true# true
expandtabs(把1个tab键转换成7个空格)
s =
‘h\ti’print(s.expandtabs())
#输出:h i
find(查找某个字符或字符串的索引位置,第二个参数:起始位置,第三个参数:结束位置)
s =
‘hello’print(s.find(‘o’))print(s.find(‘o’,0,3))
#找不到返回-1#输出:4# -1
format(字符串格式化/拼接)
name =
‘tom’age = 18s = ‘{0}\’s age is {1}’.format(name,age)print(s)
#或者str = ‘{name}\’s age is {age}’result = str.format(age=18,name=’tom’)print(result)
#输出:tom’s age is 18
format_map
#占位
index(查找某个字符或字符串的索引位置,和find不一样是,如果字符不存在,会报错)
s = ‘hello’print(s.index(‘o’))print(s.index(‘e’,0,3))
#输出:4# 1
isalnum(是否为字母或数字)
s = ‘!#’print(s.isalnum())
#输出:false
isalpha(是否为字母)
s = ‘123’print(s.isalpha())
#输出:false
isdecimal(是否为十进制数)
s = ‘123’print(s.isdecimal())
#输出:true#true: unicode数字,,全角数字(双字节)#false: 罗马数字,汉字数字#error: byte数字(单字节)
isdigit(是否为数字)
s = ‘123’print(s.isdigit())
#输出:true#true: unicode数字,byte数字(单字节),全角数字(双字节),罗马数字#false: 汉字数字
isidentifier(是否为标识符/变量名)
s = ‘1num’print(s.isidentifier())
#输出:false#因为变量名不能以数字开头
islower(是否全部为小写字母)
s = ‘hello’print(s.islower())
#输出:false
isnumeric(是否为数字)
s = ‘123’print(s.isnumeric())
#输出:true#true: unicode数字,全角数字(双字节),罗马数字,汉字数字
isprintable(是否为可打印字符/能否原样输出)
s = ‘\n’print(s.isprintable())
#输出:false
isspace(是否为空格)
print(‘ ‘.isspace())print(‘\t’.isspace())
#输出:true# true
istitle(是否为标题/每个单词首字母大写)
print(‘hello boy’.istitle())print(‘hello boy’.istitle())
#输出:true# false
isupper(是否全部为大写字母)
print(‘boy’.isupper())print(‘boy’.isupper())
#输出:true# false
join(将序列中的元素以指定的字符连接生成一个新的字符串)
s = [‘h’,’e’,’l’,’l’,’o’]print(”.join(s))print(‘-‘.join(s))
#输出:hello# h-e-l-l-o
ljust(指定长度和填充字符,内容左对齐,填充字符留空则为空格)
s = ‘hello’print(s.ljust(10,’-‘))
#输出:hello—–
lower(字符串全部换成小写)
s = ‘tom’print(s.lower())
#输出:tom
lstrip(移除字符串左侧指定的字符,默认为空格)
s = ‘ tom’print(s.lstrip())
#输出:tom
maketrans(创建字符映射的转换表,配合translate函数使用)
intab = “abcde”outtab = “12345”trantab = str.maketrans(intab, outtab)
str = “hello abc”print (str.translate(trantab))
#输出:h5llo 123
partition( 指定分隔符,将字符串进行分割)
s = ‘iamtom’print(s.partition(‘am’))
#输出:(‘i’, ‘am’, ‘tom’)
replace(把字符串中的 old(旧字符串) 替换成 new(新字符串),如果指定第三个参数max,则替换不超过 max 次。)
s = ‘tom’print(s.replace(‘m’,’o’))
#输出:too
rfind(从右边查找指定字符串出现的位置,如果没有匹配项则返回-1)
s = ‘one two one’print(s.rfind(‘one’))print(s.rfind(‘one’,0,6))
#指定起始和结束位置#输出:8# 0
rindex(从右边查找指定字符串出现的位置,如果没有匹配项则报错)
s = ‘one two one’print(s.rindex(‘one’))print(s.rindex(‘one’,0,6))
#指定起始和结束位置#输出:8# 0
rjust(指定长度和填充字符,内容右对齐,填充字符留空则为空格)
s = ‘hello’print(s.rjust(10,’-‘))
#输出:—–hello
rpartition( 指定分隔符,从右边开始将字符串进行分割)
s = ‘iamtom_iamtom’print(s.rpartition(‘am’))
#输出:(‘iamtom_i’, ‘am’, ‘tom’)
rsplit(指定分隔符对字符串进行切片,如果指定第二个参数num,则只分隔num次,最后返回一个列表)
s = ‘a b c d’print(s.rsplit())print(s.rsplit(‘ ‘,2))
#从右边开始,按空格分隔两次#输出:[‘a’, ‘b’, ‘c’, ‘d’]
# [‘a b’, ‘c’, ‘d’]
rstrip(删除字符串末尾的指定字符,默认为空格)
s = ‘!!! i am tom !!!’print(s.rstrip(‘!’))
#输出:!!! i am tom
split(指定分隔符对字符串进行切片,如果指定第二个参数num,则只分隔num次,最后返回一个列表)
s = ‘a b c d’print(s.split())print(s.split(‘ ‘,2))
#从左边开始,按空格分隔两次#输出:[‘a’, ‘b’, ‘c’, ‘d’]# [‘a’, ‘b’, ‘c d’]
splitlines(按换行符来分隔字符串,返回一个列表)
s = ‘a\nb\nc’print(s.splitlines())
#默认参数为falseprint(s.splitlines(true))
#指定ture参数,则保留换行符#输出:[‘a’, ‘b’, ‘c’]
# [‘a\n’, ‘b\n’, ‘c’]
startswith(判断字符串是否以某个字符或字符串开头的,第二个参数:起始位置,第三个参数:结束位置)
s = ‘projects’print(s.startswith(‘pr’))print(s.startswith(‘e’,4,8))
#输出:true# true
strip(删除字符串前后的指定字符,默认为空格)
s = ‘!!! i am tom !!!’print(s.strip(‘!’))
#输出: i am tom
swapcase(大小写互换)
s = ‘i am tom’print(s.swapcase())
#输出:i am tom
title(转换成标题,就是每个单词首字母大写)
s = ‘i am tom’print(s.title())
#输出:i am tom
translate(根据maketrans方法创建的表,进行字符替换)
intab = “abcde”outtab = “12345”trantab = str.maketrans(intab, outtab)
str = “hello abc”print (str.translate(trantab))
#输出:h5llo 123
upper(小写转换成大写)
s = ‘hello’print(s.upper())
#输出:hello
zfill(指定字符串的长度。原字符串右对齐,前面填充0)
s = ‘hello’print(s.zfill(10))
# 输出:00000hello
以上就是python3字符串的功能举例详细说明的详细内容,更多请关注 第一php社区 其它相关文章!