1. String test = "a1b2c3";2. String[] tokens = test.split("\\d");3. for(String s: tokens) System.out.print(s + " ");