正则表达式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了正则表达式相关的知识,希望对你有一定的参考价值。
1 public class Test { 2 public static void main(String[] args) { 3 String str ="http://detail.zol.com.cn/cell_phone_advSearch/subcatedaddal1-s_1.html?#show"; 4 Pattern pattern =Pattern.compile("http://detail.zol.com.cn/cell_phone_advSearch/subcate[\\w\n]"); 5 Matcher matcher = pattern.matcher(str); 6 System.out.println(matcher.find()); 7 } 8 }
以上是关于正则表达式的主要内容,如果未能解决你的问题,请参考以下文章
正则表达式匹配特定的 URL 片段而不是所有其他 URL 可能性