Class Matcher

java.lang.Object
com.singularsys.compatibility.Matcher

public class Matcher extends Object
A very restricted re-implementation of the Matcher class. Basically assumes that we are always looking for the pattern at the start of the string. That is Mathcher.lookingAt() will always be called and Matcher.find() never called. Uses the RegExp class.
  • Constructor Details

  • Method Details

    • lookingAt

      public boolean lookingAt()
    • group

      public String group()
    • group

      public String group(int i)
    • matches

      public boolean matches()
    • replaceAll

      public String replaceAll(String replacement)