
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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
Advertisements