How to remove all white spaces from a String in Java?
Given a String with white spaces, the task is to remove all white spaces from a string using Java built-in methods.
Examples:
Input: str = " Geeks for Geeks " Output: GeeksforGeeks Input: str = " A Computer Science Portal" Output: AComputerSciencePortal
To remove all white spaces from String, use the replaceAll() method of String class with two arguments, i.e.
replaceAll("\\s", ""); where \\s is a single space in unicode
Program:
Java
class BlankSpace { public static void main(String[] args) { String str = " Geeks for Geeks " ; // Call the replaceAll() method str = str.replaceAll( "\\s" , "" ); System.out.println(str); } } |
Output
GeeksforGeeks
Please Login to comment...