public class Main { public static void main(String[] argv) { String s = " this is a test "; s.replaceAll("^\\s+", ""); System.out.println(">" + s + "<"); } } //> this is a test <