1. 程式人生 > >Python中的Re找到字串包含字元的所有位置

Python中的Re找到字串包含字元的所有位置

python字串有find,index, rindex, 都是隻能查詢一次字串出現的位置,就是沒有查詢字串中包含某個字元的所有位置。
#-*-coding:utf8-*-
import re
list=[i.start() for i in re.finditer('\\\\', 'C:\\Users\\aaa\\computer\\flicker\\01213.jpg')]
print(list)