当前位置: 代码迷 >> J2SE >> 如何匹配这个字符串*Contig 1 *
  详细解决方案

如何匹配这个字符串*Contig 1 *

热度:54   发布时间:2016-04-24 01:17:58.0
怎么匹配这个字符串*******************Contig 1 ********************?
Pattern p = Pattern.compile("[*******************] Contig //d [********************]");
Matcher m = p.matcher("*******************Contig 1 ********************");
boolean b = m.matches();
System.out.println(b);
System.out.println(m.group());

我像匹配这样的字符串 *******************Contig 1 ********************
*******************Contig 2 ********************
*******************Contig 3 ********************

可是用这样的正则表达式
("[*******************] Contig //d [********************]")
怎么不行?

应该怎么写?
求救啊!!!


------解决方案--------------------
Java code
    public static void main(String[] args) {        Pattern p = Pattern.compile("\\*+Contig (\\d) \\*+");        Matcher m = p.matcher("*******************Contig 1 ********************");        boolean b = m.matches();           System.out.println(b);           if (b)           {        System.out.println(m.group());          System.out.println(m.group(1));           }      }