gpt4 book ai didi

java - 检索包含特定字符串的数组项

转载 作者:行者123 更新时间:2023-12-01 18:12:37 26 4
gpt4 key购买 nike

我有一堆如下所示的网址

联系方式

如何仅返回“www.example.com”?

有一个简单的方法可以通过 jsoup 做到这一点吗?

我有相对和绝对网址,我只想在没有标签的情况下检索它们。

最佳答案

迭代数组并使用以下示例测试每个条目。

Pattern p = Pattern.compile("(http|ftp|https):\/\/([\w\-_]+(?:(?:\.[\w\-_]+)+))([\w\-\.,@?^=%&:/~\+#]*[\w\-\@?^=%&/~\+#])?");

for(String x : myArray){
Matcher m = p.matcher(x);
int count = m.groupCount();
while(count > 0){
System.out.println(m.group(count--));
}

}

Matcher Documentation

关于java - 检索包含特定字符串的数组项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31821279/

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