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

在字符串中应用查找模式

  1. import re
  2. s1 = 'abccba'
  3. s2 = 'abcabc'
  4. s3 = 'canadajapanuaeuaejapancanada'
  5. p = '123321'
  6. def match(s, p):
  7. nr = {}
  8. regex = []
  9. for c in p:
  10. if c not in nr:
  11. regex.append('(.+)')
  12. nr[c] = len(nr) + 1
  13. else:
  14. regex.append('\\%d' % nr[c])
  15. return bool(re.match(''.join(regex) + '$', s))
  16. print(match(s1, p))
  17. print(match(s2, p))
  18. print(match(s3, p))

Output:

  1. True
  2. False
  3. True

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