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 に答える