gpt4 book ai didi

java - 组合拆分字符串中的问题

转载 作者:行者123 更新时间:2023-11-29 06:36:47 24 4
gpt4 key购买 nike

我从“web 2.0 wikipedia”文章中提取了文本,并将其拆分为“句子”。之后,我将创建“字符串”,每个字符串包含 5 个句子。

提取后,文本如下所示,位于 EditText

enter image description here

下面是我的代码

finalText = textField.getText().toString();

String[] textArrayWithFullStop = finalText.split("\\. ");
String colelctionOfFiveSentences = "";

List<String>textCollection = new ArrayList<String>();
for(int i=0;i<textArrayWithFullStop.length;i++)
{
colelctionOfFiveSentences = colelctionOfFiveSentences + textArrayWithFullStop[i];
if( (i%5==0) )
{
textCollection.add(colelctionOfFiveSentences);
colelctionOfFiveSentences = "";
}
}

但是,当我使用 Toast 显示文本时,这里给出的是什么

Toast.makeText(Talk.this, textCollection.get(0), Toast.LENGTH_LONG).show();

enter image description here

如你所见,这只是一句话!但我希望它有 5 个句子!

另一件事是,第二句话是从别处开始的。这是我如何将它提取到 Toast

Toast.makeText(Talk.this, textCollection.get(1), Toast.LENGTH_LONG).show();

enter image description here

这对我来说毫无意义!如何正确地将文本拆分成句子,并创建每个包含 5 个句子的 Strings

最佳答案

问题是对于第一句话,0 % 5 = 0,所以它被立即添加到数组列表中。你应该使用另一个计数器而不是模组。

finalText = textField.getText().toString();

String[] textArrayWithFullStop = finalText.split("\\. ");
String colelctionOfFiveSentences = "";
int sentenceAdded = 0;

List<String>textCollection = new ArrayList<String>();
for(int i=0;i<textArrayWithFullStop.length;i++)
{
colelctionOfFiveSentences += textArrayWithFullStop[i] + ". ";
sentenceAdded++;
if(sentenceAdded == 5)
{
textCollection.add(colelctionOfFiveSentences);
colelctionOfFiveSentences = "";
sentenceAdded = 0;
}
}

关于java - 组合拆分字符串中的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19397462/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com