Given:<br /> 11.String test = "Test A. Test B. Test C.";<br /> 12.// insert code here<br /> 13.String[] result = test.split(regex);<br /> Which regular expression, inserted at line 12,correctly splits test into "Test A","Test B",and "Test C"?()<p> Given:<br /> 11.String test = "Test A. Test B. Test C.";<br /> 12.// insert code here<br /> 13.String[] result = test.split(regex);<br /> Which regular expression, inserted at line 12,correctly splits test into "Test A","Test B",and "Test C"?()</p>
A、A.String regex = "";
B、B.String regex = " ";
C、C.String regex = ".*";
D、D.String regex = "\\s";
E、E.String regex = "\\.\\s*";