当前位置:  首页>> 技术小册>> Python合辑4-130个字符串操作示例

查找所有出现的子字符串

  1. import re
  2. aString = 'this is a string where the substring "is" is repeated several times'
  3. print([(a.start(), a.end()) for a in list(re.finditer('is', aString))])

Output:

  1. [(2, 4), (5, 7), (38, 40), (42, 44)]

该分类下的相关小册推荐: