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
Rajendra Dharmkar
Rajendra Dharmkar

Updated on: 2019-12-19T09:02:07+05:30

908 Views

Kickstart Your Career

Get certified by completing the course

Get Started