Contact: aviboots(AT)netvision.net.il
41,857 questions
54,547 answers
573 users
String s = "Groovy Java PHP" s1 = s.padLeft(20) // pad with spaces s2 = s.padLeft(20, '*') println(s1) println(s2) /* run: Groovy Java PHP *****Groovy Java PHP */