1

私のjsoupクラスでは、次のように各タグのテキストを取得します

  doc = Jsoup.parse(getxml,"", Parser.xmlParser());
    libelle = doc.select("belle");

結果は pin pin pin apple apple apple 34233 4433 314434

それから私はそれを次のように分割します

  libel = libelleCompte.text().toString().split(" ");

元のタグは次のとおりです

<pretty>
<belle> pin pin pin</belle>
<belle>apple apple apple</belle>
<belle>34233</belle>
<belle>4433</belle>
<belle>314434</belle>
</pretty>

結果は

ピン ピン ピン アップル アップル アップル 34233 4433 314434

各タグの後に分割する方法はありますか?

4

2 に答える 2

1
String str = "Hello How are you";
String arrayString[] = str.split("\\s+") 

以下のリンクを参照してください: -

空白でJavaの文字列を分割する方法は?

于 2013-04-04T13:26:38.237 に答える