如有字符串mystr = ‘hello world itcast and itcastcpp’,以下是常见的操作

<1>find
检测 str 是否包含在 mystr中,如果是返回开始的索引值,否则返回-1

mystr.find(str, start=0, end=len(mystr))

python 字符串包含有某个关键字 python包含指定内容的字符串_git


python 字符串包含有某个关键字 python包含指定内容的字符串_首字母_02

<2>index
跟find()方法一样,只不过如果str不在 mystr中会报一个异常.

mystr.index(str, start=0, end=len(mystr))

python 字符串包含有某个关键字 python包含指定内容的字符串_python 字符串包含有某个关键字_03

<3>count
返回 str在start和end之间 在 mystr里面出现的次数

mystr.count(str, start=0, end=len(mystr))

python 字符串包含有某个关键字 python包含指定内容的字符串_首字母_04


<4>replace

把 mystr 中的 str1 替换成 str2,如果 count 指定,则替换不超过 count 次.

mystr.replace(str1, str2,  mystr.count(str1))

python 字符串包含有某个关键字 python包含指定内容的字符串_git_05

<5>split
以 str 为分隔符切片 mystr,如果 maxsplit有指定值,则仅分隔 maxsplit 个子字符串

mystr.split(str=" ", 2)

python 字符串包含有某个关键字 python包含指定内容的字符串_字符串_06

<6>capitalize
把字符串的第一个字符大写

mystr.capitalize()

python 字符串包含有某个关键字 python包含指定内容的字符串_首字母_07


<7>title

把字符串的每个单词首字母大写

>>> a = "hello itcast"
>>> a.title()
'Hello Itcast'

<8>startswith
检查字符串是否是以 hello 开头, 是则返回 True,否则返回 False

mystr.startswith(hello)

python 字符串包含有某个关键字 python包含指定内容的字符串_字符串_08


<9>endswith

检查字符串是否以obj结束,如果是返回True,否则返回 False.

mystr.endswith(obj)

python 字符串包含有某个关键字 python包含指定内容的字符串_python 字符串包含有某个关键字_09


<10>lower

转换 mystr 中所有大写字符为小写

mystr.lower()

python 字符串包含有某个关键字 python包含指定内容的字符串_首字母_10


<11>upper

转换 mystr 中的小写字母为大写

mystr.upper()

python 字符串包含有某个关键字 python包含指定内容的字符串_git_11


<12>ljust

返回一个原字符串左对齐,并使用空格填充至长度 width 的新字符串

mystr.ljust(width)

python 字符串包含有某个关键字 python包含指定内容的字符串_git_12


<13>rjust

返回一个原字符串右对齐,并使用空格填充至长度 width 的新字符串

mystr.rjust(width)

python 字符串包含有某个关键字 python包含指定内容的字符串_git_13


<14>center

返回一个原字符串居中,并使用空格填充至长度 width 的新字符串

mystr.center(width)

python 字符串包含有某个关键字 python包含指定内容的字符串_python 字符串包含有某个关键字_14


<15>lstrip

删除 mystr 左边的空白字符

mystr.lstrip()

python 字符串包含有某个关键字 python包含指定内容的字符串_git_15


<16>rstrip

删除 mystr 字符串末尾的空白字符

mystr.rstrip()

python 字符串包含有某个关键字 python包含指定内容的字符串_首字母_16

<17>strip
删除mystr字符串两端的空白字符

>>> a = "\n\t itcast \t\n"
>>> a.strip()
'itcast'

<18>rfind
类似于 find()函数,不过是从右边开始查找.

mystr.rfind(str, start=0,end=len(mystr) )

python 字符串包含有某个关键字 python包含指定内容的字符串_字符串_17


<19>rindex

类似于 index(),不过是从右边开始.

mystr.rindex( str, start=0,end=len(mystr))

python 字符串包含有某个关键字 python包含指定内容的字符串_首字母_18


<20>partition

把mystr以str分割成三部分,str前,str和str后

mystr.partition(str)

python 字符串包含有某个关键字 python包含指定内容的字符串_字符串_19

<21>rpartition
类似于 partition()函数,不过是从右边开始.

mystr.rpartition(str)

python 字符串包含有某个关键字 python包含指定内容的字符串_git_20

<22>splitlines
按照行分隔,返回一个包含各行作为元素的列表

mystr.splitlines()

python 字符串包含有某个关键字 python包含指定内容的字符串_python 字符串包含有某个关键字_21

<23>isalpha
如果 mystr 所有字符都是字母 则返回 True,否则返回 False

mystr.isalpha()

python 字符串包含有某个关键字 python包含指定内容的字符串_git_22

<24>isdigit
如果 mystr 只包含数字则返回 True 否则返回 False.

mystr.isdigit()

python 字符串包含有某个关键字 python包含指定内容的字符串_python 字符串包含有某个关键字_23

<25>isalnum
如果 mystr 所有字符都是字母或数字则返回 True,否则返回 False

mystr.isalnum()

python 字符串包含有某个关键字 python包含指定内容的字符串_字符串_24

<26>isspace
如果 mystr 中只包含空格,则返回 True,否则返回 False.

mystr.isspace()

python 字符串包含有某个关键字 python包含指定内容的字符串_git_25

<27>join
mystr 中每个元素后面插入str,构造出一个新的字符串

mystr.join(str)

python 字符串包含有某个关键字 python包含指定内容的字符串_python 字符串包含有某个关键字_26