例如:
String s="this is a.line is .over"
应该出来
“这是一个.Line is.Over”
我想过两次使用字符串标记器
-first split using"."
-second split using " " to get the first word
-then change charAt[0].toUpper
现在我不确定如何使用字符串标记器的输出作为另一个输入?
我也可以使用 split 方法生成我尝试过的数组
String a="this is.a good boy";
String [] dot=a.split("\\.");
while(i<dot.length)
{
String [] sp=dot[i].split(" ");
sp[0].charAt(0).toUpperCase();// what to do with this part?