1)find

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

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

16 python - 字符串常见的操作_# Python
16 python - 字符串常见的操作_# Python_02

2)index

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

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

16 python - 字符串常见的操作_# Python_03

3)count

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

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

16 python - 字符串常见的操作_# Python_04

4)replace

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

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

16 python - 字符串常见的操作_# Python_05

5)split

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

mystr.split(str=" ", 2)    

16 python - 字符串常见的操作_# Python_06

6)capitalize

把字符串的第一个字符大写

mystr.capitalize()

16 python - 字符串常见的操作_# Python_07

7)title

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

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

8)startswith

检查字符串是否是以 obj 开头, 是则返回 True,否则返回 False

mystr.startswith(obj)

16 python - 字符串常见的操作_# Python_08

9)endswith

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

mystr.endswith(obj)

16 python - 字符串常见的操作_# Python_09

10)lower

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

mystr.lower()   

16 python - 字符串常见的操作_# Python_10

11)upper

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

mystr.upper()    

16 python - 字符串常见的操作_# Python_11

12)ljust

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

mystr.ljust(width) 

16 python - 字符串常见的操作_# Python_12

13)rjust

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

mystr.rjust(width)    

16 python - 字符串常见的操作_# Python_13

14) center

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

mystr.center(width)   

16 python - 字符串常见的操作_# Python_14

15)lstrip

删除 mystr 左边的空白字符

mystr.lstrip()

16 python - 字符串常见的操作_# Python_15

16)rstrip

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

mystr.rstrip()    

16 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) )

16 python - 字符串常见的操作_# Python_17

19)rindex

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

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

16 python - 字符串常见的操作_# Python_18

20)partition

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

mystr.partition(str)

16 python - 字符串常见的操作_# Python_19

21)rpartition

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

mystr.rpartition(str)

16 python - 字符串常见的操作_# Python_20

22)splitlines

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

mystr.splitlines()  

16 python - 字符串常见的操作_# Python_21

23)isalpha

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

mystr.isalpha()  

16 python - 字符串常见的操作_# Python_22

24)isdigit

如果 mystr 只包含数字则返回 True 否则返回 False.

mystr.isdigit() 

16 python - 字符串常见的操作_# Python_23

25)isalnum

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

mystr.isalnum()  

16 python - 字符串常见的操作_# Python_24

26)isspace

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

mystr.isspace()   

16 python - 字符串常见的操作_# Python_25

27)join

mystr 中每个字符后面插入str,构造出一个新的字符串

mystr.join(str)

16 python - 字符串常见的操作_# Python_26