如何將array
的句子拆分爲array of array
的詞? 如果我可以使用split()
分割句子..但它只用於單個數組。 但我需要做的多陣列..java將句子拆分成詞
如:
sentences[0]="one sentence"
sentences[1]=" one sen...."
我需要拆分這樣的... ...
word[0][0]="one word" //first row first word
word[0][1]="second word"
word[0][2]="third word"
word[1][0]="..."//second row first word**
任何一個能幫助我。
'分裂()'是String'的'方法,它......你的數組。 – 2013-02-09 05:58:22
請看[for statement](http://docs.oracle.com/javase/tutorial/java/nutsandbolts/for.html)! – 2013-02-09 06:12:14