读取文本中的url

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class UrlUtils {

public static String getUrl(String input) {
String regex = "(https://.*?)[//s/u4e00-/u9fa5]";
Pattern pattern = Pattern.compile(regex, Pattern.CASE_INSENSITIVE);
Matcher matcher = pattern.matcher(input);
if (matcher.find()) {
return matcher.group(1);
}
return "";
}
}
 测试结果如下:
import java.net.MalformedURLException;

p

读取文本中的url最先出现在Python成神之路

版权声明:
作者:dingding
链接:https://www.techfm.club/p/7709.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>