标签:false 返回 color 字符 bsp mat ret match turn
/** * 验证网址Url * * @param 待验证的字符串 * @return 如果是符合格式的字符串,返回 <b>true </b>,否则为 <b>false </b> */ public static boolean IsUrl(String str) { String regex = "http(s)?://([\\w-]+\\.)+[\\w-]+(/[\\w- ./?%&=]*)?"; return match(regex, str); }
标签:false 返回 color 字符 bsp mat ret match turn
原文地址:http://www.cnblogs.com/20gg-com/p/6037445.html