Groovy正则表达式使用

 转: http://364434006.iteye.com/blog/1735462

//  定义正则表达式,里面的特殊字符会自动转义

~// 定义正则表达式,会将字符串编译成Pattern

=~  将左边的字符串局部匹配右边的正则表达式,并返回Matcher

==~ 将左边的字符串全局匹配右边的正则表达式,并返回boolean

 

//语法“//”定义正则表达式,对于出现在表达式中特殊字符,会自动进行转义

       def p1 = /a\d$@/;

       println p1;//  /a\d$@/

       println p1.class;//类型还是字符串

       println 'a\\d$@' == p1;//true

      

       // "//"中可以使用GString

       def sname = "name";

       println (/$sname/ == "$sname");//true

       println (/$sname/ == sname);//true

      

       println "============================";

       //~:用在字符串之前,会将字符串编译成Pattern

       def p2 = ~/groovy\d+/;

       println p2;// groovy\d+

       println p2.class//java.util.regex.Pattern

      

       println "============================";

      

       //=~:将操作符左边的字符串跟右边的Pattern进行局部匹配,返回值为Matcher

       def matcher = ("hello groovy88 test" =~ p2);

       println matcher;//java.util.regex.Matcher[pattern=a region=0,3 lastmatch=]

       println matcher.class;//java.util.regex.Matcher

       println matcher[0] == "groovy88";//没有匹配到matcher[0]null,所以这里在校验有没有匹配到时可以通过getCount()来判断

       println matcher.getCount();

       println "============================";

      

       //用法=~类似,只是这里进行的精确匹配,即左边的整个字符串跟左边的模式进行匹配,==~的结果跟Matcher.matches()的结果是一样的。返回值为Boolean     

       def matcher2 = ("hello groovy88 test" =~ /groovy\d+/);//局部匹配返回Matcher

       def matcher3 = ("hello groovy88 test" ==~ /groovy\d+/);//全局匹配返回boolean

      

       println matcher2[0];//groovy88

       println matcher3;//false

 

       println "==========matches==================";

       //Matcher类的matches方法只有在全匹配才返回true

       def matcher4 = ("groovy123" =~ /groovy\d+/);

       println matcher4.matches();//true

      

       matcher4 = ("testgroovy123" =~ /groovy\d+/);

       println matcher4.matches();//false

 

       //println ("groovy123" =~ /groovy\d+/).matches();//这种写法还有错误

相关文章

背景:    8月29日,凌晨4点左右,某服务告警,其中一个...
https://support.smartbear.comeadyapi/docs/soapui/steps/g...
有几个选项可用于执行自定义JMeter脚本并扩展基线JMeter功能...
Scala和Java为静态语言,Groovy为动态语言Scala:函数式编程,...
出处:https://www.jianshu.com/p/ce6f8a1f66f4一、一些内部...
在运行groovy的junit方法时,报了这个错误:java.lang.Excep...