2

如何将一个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**

任何人都可以帮助我。

4

2 回答 2

1

试试这样的..

for(i=0;i<someLength;i++){
word[i] = sentence[i].split("yourDelimiter");
}
于 2013-02-09T06:05:16.803 回答
1
String[] sentences = ...
String[][] words = new String[sentences.length][];

for(int i = 0; i < sentences.length; i++)
{
    words[i] = sentences[i].split("\\s+");
}
于 2013-02-09T06:15:42.160 回答