Given:<br /> 11.String test = "a1b2c3";<br /> 12.String[] tokens = test.split("\\d");<br /> 13.for(String s: tokens) System.out.print(s + " ");<br /> What is the result?()<p> Given:<br /> 11.String test = "a1b2c3";<br /> 12.String[] tokens = test.split("\\d");<br /> 13.for(String s: tokens) System.out.print(s + " ");<br /> What is the result?()</p>
A、A.a b c
B、B.1 2 3
C、C.a1b2c3
D、D.a1 b2 c3