
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 Newline, Space, and Tab Characters from a String in Java
To remove newline, space and tab characters from a string, replace them with empty as shown below.
replaceAll("[\n\t ]", "");
Above, the new line, tab, and space will get replaced with empty, since we have used replaceAll()
The following is the complete example.
Example
public class Demo { public static void main(String[] args) { String originalStr = "Demo\n\tText"; System.out.println("Original String with tabs, spaces and newline: \n"+originalStr); originalStr = originalStr.replaceAll("[\n\t ]", ""); System.out.println("\nString after removing tabs, spaces and new line: "+originalStr); } }
Output
Original String with tabs, spaces and newline: Demo Text String after removing tabs, spaces and new line: DemoText