import re
p = re.compile(r'\d+')
print p.split('one1two2three3four4')
### output ###
# ['one', 'two', 'three', 'four',
4、字串的開頭和結尾的處理
例如查詢乙個檔名以什麼開頭或以什麼結尾
filename='trace.h'
print(filename.endwith('h'))
>>true
print(filenam.startwith('trace'))
>>true
5、字串的查詢和匹配
一般查詢:
在長字串裡面查詢字串,會返回字串所在字串的索引,否則返回-1
str.find('***x')
複雜的匹配:
使用import re
6、字串的替換
普通的替換:replace
str.replace('被替換者','替換著')
複雜替換
使用正則匹配的re.sub
7、字串去掉一些字元
去除空格 對文字處理的時候比如從檔案讀取一行,然後去除每一行的兩側空格,tab或者換行符
line=' congratulations, you guessed it. '
print(line.strip())
>>congratulations, you guessed it.
注意:字串內部的空格不能去掉,若要去掉需要用re模組
python字串處理常用方法
1 str.find str.rfind str.index str.rindex str.count s hello python,hello world s.find hello 從左側開始查詢 0 s.rfind hello 從右側開始查詢 13 s.find wahaha 查詢失敗,返回 1...
Python 字串處理常用函式
python處理字串有很多常用函式 1.使用成員操作符in str hello,world n sstr n result sstr in str print result true2.使用字串的find index 火count 方法 str hello,world n sstr n result...
python 字元處理
result url.isalpha 判斷是否是字母 result url.isdigit 判斷是否是數字 result filename.endswith doc 判斷結束字元 result filename.startswith a 判斷開始字元string sdfsdfsdf asdf fin...