Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
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
Advertisements
