码迷,mamicode.com
首页 > 其他好文 > 详细

正则提取字符串中的字符串

时间:2017-06-04 00:50:55      阅读:268      评论:0      收藏:0      [点我收藏+]

标签:pattern   out   reg   mpi   generate   gen   res   compile   ram   

String regEx = "(?<=\\[)[\\S\\s]+(?=\\])";
Pattern p = Pattern.compile(regEx);
Matcher m = p.matcher(line);
boolean result = m.find();
System.out.println(m.group());

 

 

 

 

public class RegexTest {

  /**
  * @param args
  */
  public static void main(String[] args) {
  // TODO Auto-generated method stub
  String str = "<input type=‘text‘ id=‘baijinshan‘ name=‘baijinshan‘ >";
// 正则表达式:以id=‘开头,以‘ name结尾。
  String regEx="(?<=id=‘)[\\S\\s]+(?=‘ name)";
  Pattern p=Pattern.compile(regEx);
  Matcher m=p.matcher(str);
  boolean result=m.find();
  System.out.println(m.group());
  }

}

正则提取字符串中的字符串

标签:pattern   out   reg   mpi   generate   gen   res   compile   ram   

原文地址:http://www.cnblogs.com/adolfmc/p/6938949.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!