Class Matcher2


  • public class Matcher2
    extends java.lang.Object
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static Matcher2 build​(java.util.regex.Pattern pattern, java.lang.CharSequence input)  
      int end()  
      boolean find()  
      java.lang.String group()  
      java.lang.String group​(int n)  
      int groupCount()  
      boolean matches()  
      int start()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • build

        public static Matcher2 build​(java.util.regex.Pattern pattern,
                                     java.lang.CharSequence input)
      • matches

        public boolean matches()
      • group

        public java.lang.String group​(int n)
      • group

        public java.lang.String group()
      • groupCount

        public int groupCount()
      • find

        public boolean find()
      • end

        public int end()
      • start

        public int start()