Thanks to visit codestin.com Credit goes to www.java2s.com
Remove leading white space from a string
public class Main { public static void main(String[] args) { String text = " t "; text = text.replaceAll("^\\s+", ""); System.out.println("Text: " + text); } }