Remove leading and trailing space from String
public class Main { public static void main(String[] args) { String str = " this is a test "; String strTrimmed = str.trim(); System.out.println(">" + str+"<"); System.out.println(">" + strTrimmed+"<"); } } /* > this is a test < >this is a test< */