我想从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 。
http://www.example.com/asd/abc
更新:
您可以使用正则表达式和Patterns.WEB_URL正则表达式来查找文本中的所有url。
Patterns.WEB_URL
原版的:
您可以使用Uri.parse(String uriString)功能。
Uri.parse(String uriString)