2.11 删除字符串中不需要的字符

问题

你想去掉文本字符串开头,结尾或者中间不想要的字符,比如空白。

解决方案

strip() 方法能用于删除开始或结尾的字符。 lstrip()rstrip() 分别从左和从右执行删除操作。默认情况下,这些方法会去除空白字符,但是你也可以指定其他字符。比如:

  1. >>> # Whitespace stripping
  2. >>> s = ' hello world \n'
  3. >>> s.strip()
  4. 'hello world'
  5. >>> s.lstrip()
  6. 'hello world \n'
  7. >>> s.rstrip()
  8. ' hello world'
  9. >>>
  10. >>> # Character stripping
  11. >>> t = '-----hello====='
  12. >>> t.lstrip('-')
  13. 'hello====='
  14. >>> t.strip('-=')
  15. 'hello'
  16. >>>

讨论

这些 strip() 方法在读取和清理数据以备后续处理的时候是经常会被用到的。比如,你可以用它们来去掉空格,引号和完成其他任务。

但是需要注意的是去除操作不会对字符串的中间的文本产生任何影响。比如:

  1. >>> s = ' hello world \n'
  2. >>> s = s.strip()
  3. >>> s
  4. 'hello world'
  5. >>>

如果你想处理中间的空格,那么你需要求助其他技术。比如使用 replace() 方法或者是用正则表达式替换。示例如下:

  1. >>> s.replace(' ', '')
  2. 'helloworld'
  3. >>> import re
  4. >>> re.sub('\s+', ' ', s)
  5. 'hello world'
  6. >>>

通常情况下你想将字符串 strip 操作和其他迭代操作相结合,比如从文件中读取多行数据。如果是这样的话,那么生成器表达式就可以大显身手了。比如:

  1. with open(filename) as f:
  2. lines = (line.strip() for line in f)
  3. for line in lines:
  4. print(line)

在这里,表达式 lines = (line.strip() for line in f) 执行数据转换操作。这种方式非常高效,因为它不需要预先读取所有数据放到一个临时的列表中去。它仅仅只是创建一个生成器,并且每次返回行之前会先执行 strip 操作。

对于更高阶的strip,你可能需要使用 translate() 方法。请参阅下一节了解更多关于字符串清理的内容。

原文:

http://python3-cookbook.readthedocs.io/zh_CN/latest/c02/p11_strip_unwanted_characters.html