Mega Code Archive

 
Categories / Java / Data Type
 

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);   } }