如何使用Python正则表达式去除空格/制表符/换行符?

以下代码使用Python正则表达式从给定字符串中去除空格/制表符/换行符

我们在正则表达式中使用“ \ S”,代表所有非空白字符

示例

import re
print re.findall(r"[\S]","""I find
    Nhooo useful""")

输出结果

这给出了输出

['I', 'f', 'i', 'n', 'd', 'T', 'u', 't', 'o', 'r', 'i', 'a', 'l', 's', 'p', 'o', 'i', 'n', 't', 'u', 's', 'e', 'f', 'u', 'l']