如何将一个array
句子拆分成一个array of array
单词?如果我可以使用 .. 拆分句子split()
,但它只使用单个数组。但我需要做多个数组..
例如:
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**
任何人都可以帮助我。