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

每当数字与非数字相邻时,Python 正则表达式都会添加空格

  1. import re
  2. text = ['123', 'abc', '4x5x6', '7.2volt', '60BTU',
  3. '20v', '4*5', '24in', 'google.com-1.2', '1.2.3']
  4. pattern = r'(-?[0-9]+\.?[0-9]*)'
  5. for data in text:
  6. print(repr(data), repr(
  7. ' '.join(segment for segment in re.split(pattern, data) if segment)))

Output:

  1. '123' '123'
  2. 'abc' 'abc'
  3. '4x5x6' '4 x 5 x 6'
  4. '7.2volt' '7.2 volt'
  5. '60BTU' '60 BTU'
  6. '20v' '20 v'
  7. '4*5' '4 * 5'
  8. '24in' '24 in'
  9. 'google.com-1.2' 'google.com -1.2'
  10. '1.2.3' '1.2 . 3'

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