读取文本中的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成神之路。
共有 0 条评论