小编典典

如何从Android中的字符串解析URL?

java

我想从android中的字符串解析网址。示例字符串为

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

我想http://www.example.com/asd/abc在不使用subString方法的情况下从String 解析URL 。


阅读 388

收藏
2020-12-03

共1个答案

小编典典

更新:

您可以使用正则表达式和Patterns.WEB_URL正则表达式来查找文本中的所有url。


原版的:

您可以使用Uri.parse(String uriString)功能。

2020-12-03