Youtube Channel

Java Program to Remove all WhiteSpace from a String


public class SpaceRemove
 {
    public static void main(String[] args) 

   {
        String str="he is a good boy";
        System.out.println(str.replaceAll("\\s+",""));
    }
}
Next PostNewer Post Previous PostOlder Post Home