首页 > 代码库 > python中的字符串操作

python中的字符串操作

    python中没有单独的字符串类型,一个字符串就是长度为1的字符串.字符串可以用(slice)几号来指定字串,片段即是用冒号隔开的两个下标:

>>>word=‘Help‘+‘A‘

>>>word

‘HelpA‘

>>>word[0:2]

    片段的缺省值:第一下标缺省为零,第二下标省略时为字符串的长度.

    下标允许为负,这时从右向左数.

>>>word[-1]

‘A‘

>>>word[-2:0]

‘pA‘

>>>word[:-2]

‘Hel‘

    超出范围的下标片段被截断,但再非片段情况下,这样是错误的.

>>>word[-100:]

‘HelpA‘

>>>word[-10] #error

    内置函数len()返回字符串的长度

与字符串相关的内建方法:

    string.lstrip("pattern")

    string.rstrip("pattern")

    string.strip("pattern")

    string.split("pattern")

python中的字符串操作