eg:
String s="this is a.line is .over "
should come out as
"This is a.Line is.Over"
I thought of using string tokenizer twice
-first split using"."
-second split using " " to get the first word
-then change charAt[0].toUpper
now i'm not sure how to use the output of string tokenizer as input for another?
also i can using the split method to generate array something i tried
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?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…