gpt4 book ai didi

java - 如何从android中的字符串解析url?

转载 作者:太空狗 更新时间:2023-10-29 22:58:52 28 4
gpt4 key购买 nike

我想从 android 中的字符串解析 url。示例字符串是

"This is a new message. The content of the message is in 'http://www.example.com/asd/abc' "

我想在不使用 subString 方法的情况下从字符串中解析 url http://www.example.com/asd/abc

最佳答案

使用这个:

public static String[] extractLinks(String text) {
List<String> links = new ArrayList<String>();
Matcher m = Patterns.WEB_URL.matcher(text);
while (m.find()) {
String url = m.group();
Log.d(TAG, "URL extracted: " + url);
links.add(url);
}

return links.toArray(new String[links.size()]);
}

关于java - 如何从android中的字符串解析url?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6384240/

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