Thanks to visit codestin.com
Credit goes to www.tutorialspoint.com

Delete All Whitespaces from a String in Java



To delete all whitespaces from a string, use the replaceAll() method and replace every whitespace with empty.

Let’s say the following is our string.

String str = "This is it!";

Now, let us replace the whitespaces that will eventually delete them.

String res = str.replaceAll("\s+","");

Example

 Live Demo

public class Demo {
   public static void main(String []args) {
      String str = "This is it!";
      System.out.println("String: "+str);
      String res = str.replaceAll("\s+","");
      System.out.println("String after deleting whitespace: "+res);
   }
}

Output

String: This is it!
String after deleting whitespace: Thisisit!
Updated on: 2020-06-27T06:01:21+05:30

149 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements