python中字符串的操作方法
字符串的操作方法 参考python爬虫网络实战(第二版)胡松涛 字符串的大小写转换 S . lower ( ) : #字母大写转换成小写 S . upper ( ) #字母小写转换成大写 S . swapcase ( ) #字母大写转换成小写,小写转换成成大写 S . title ( ) #将首字母大写 字符串的搜索和替换 S . find ( substr , [ start , [ end ] ] ) #返回S中出现substr的第一个字母的标号,start和end的作用相当于在S[start:end]中搜索 S . count ( substr , [ start , [ end ] ] ) : #计算substr在S中出现的次数 S . replace ( older , newstr , [ count ] ) : #把S中的older替换成newstr,count为替换的次数 S . strip ( [ chars ] ) : #把S两端chars中有的字符全部去掉,一般用来去掉空格 字符串的分割、组合 S . split ( [ sep , [ maxsplit ] ] ) : #以sep为分隔,把S分成一个list,maxsplit为分割的次数,默认空白字符 S . join ( sep ) : #把sep代表的序列用S连接起来 字符串的编码和解码 S .