Contact: aviboots(AT)netvision.net.il
39,872 questions
51,795 answers
573 users
public class MyClass { public static void main(String[] args) { String str = "234"; str = Integer.toString(Integer.parseInt(str) + 1); System.out.print(str); } } /* run: 235 */