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

拆分非字母数字并在 Python 中保留分隔符

  1. import re
  2. s = "65&Can-Jap#Ind^UK"
  3. l = re.split('([^a-zA-Z0-9])', s)
  4. print(l)

Output:

  1. ['65', '&', 'Can', '-', 'Jap', '#', 'Ind', '^', 'UK']