gpt4 book ai didi

java - Java 中的正则表达式 - 解析字符串数组

转载 作者:行者123 更新时间:2023-11-29 07:24:54 28 4
gpt4 key购买 nike

我有一个这样的字符串数组:

    String tweetString = ExudeData.getInstance().filterStoppingsKeepDuplicates(tweets.text);
// get array of words and split
String[] wordArray = tweetString.split(" ");

拆分数组后,打印以下内容:

System.out.println(Arrays.toString(wordArray));

我得到的输出是:

[new, single, fallin, dropping, days, artwork, hueshq, production, iseedaviddrums, amp, bigearl7, mix, reallygoldsmith, https, , , t, co, dk5xl4cicm, https, , , t, co, rvqkum0dk7]

我想要的是删除逗号、https 和单个字母(如“t”)的所有实例(在使用上面的 split 方法之后)。所以我想结束这个:

[new, single, fallin, dropping, days, artwork, hueshq, production, iseedaviddrums, amp, bigearl7, mix, reallygoldsmith, co, dk5xl4cicm, https, co, rvqkum0dk7]

我试过像这样替换全部:

String sanitizedString = wordArray.replaceAll("\\s+", " ").replaceAll(",+", ",");

但这只是给了我相同的初始输出,没有任何变化。有什么想法吗?

最佳答案

如果您使用的是 Java 8

String[] result = Arrays.stream(tweetString.split("\\s+"))
.filter(s -> !s.isEmpty())
.toArray(String[]::new);

What I want is to remove all the instances of commas, https, and single letters like 't'

在这种情况下,您可以制作多个过滤器,如@Andronicus 做的或使用匹配项和一些正则表达式,如下所示:

String[] result = Arrays.stream(tweetString.split("\\s+"))
.filter(s -> !s.matches("https|.|\\s+"))
.toArray(String[]::new);

关于java - Java 中的正则表达式 - 解析字符串数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55123952/

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