Android examples for java.lang:String Starts or Ends
del Dot from a string At First
public class Main{ public static String delDotAtFirst(String source) { if (source == null) { return null; }// w w w . j a va 2 s . c o m if (source.startsWith(".")) { return source.substring(1, source.length()); } return source; } }