Write code to Removes any spaces within a string.
//package com.book2s; public class Main { public static void main(String[] argv) { String s = "b oo k2s. com"; System.out.println(noSpaces(s)); }/*from ww w . ja va2s.c o m*/ /** * Removes any spaces within a string. */ public static String noSpaces(String s) { StringBuffer sb = new StringBuffer(); for (int i = 0; i < s.length(); i++) { if (s.charAt(i) != ' ') sb.append(s.charAt(i)); } return (sb.toString()); } }