How to remove tabs and newlines using Python regular expression?


The following code removes tabs and newlines from given string

Example

import re
print re.sub(r"\s+", " ", """I find
Tutorialspoint helpful""")

Output

This gives output

I find Tutorialspoint helpful

Updated on: 19-Dec-2019

589 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements