使用正则表达式给出错误的URL验证

时间:2018-05-05 15:32:02

标签: regex validation url using

class Testimmutablestring1{

    public static void main(String[] args )
    {
        Pattern p = Pattern.compile("^(http://|https://)?(www.)([a-zA-Z0-9]+).[a- zA-Z0-9]*.[a-z]{3}.?([a-z]+)?$"));
        Matcher m;
        m=p.matcher(https://test.com:8080/wh-101);
    }
}
  

错误:tablestring1.java:3:错误:';'预期   A-Z0-9] +)[A-ZA-Z0-9] * [A-Z] {3}([A-Z] +)$“))。?;   ^   tablestring1.java:5:错误:')'预期   米= p.matcher(https://test.com:8080/wh-101);   ^   2个错误

任何人都可以解释

0 个答案:

没有答案