com.hp.lft.sdk.web

Class TextMatch



  • public class TextMatch
    extends Object
    Class defining a text match we are looking for.
    Usage example:
    TextMatch textMatch = TextMatch.match("some text");
    TextMatch textMatch = TextMatch.match("some text", 2);
    • Field Detail

      • textOccurrence

        protected Integer textOccurrence
    • Constructor Detail

      • TextMatch

        protected TextMatch()
    • Method Detail

      • match

        public static TextMatch match(String text)
        Returns the text match object which can be used to find the first match of the specified text.
        Parameters:
        text - the text to search for.
        Returns:
        the text match object which can be used to find the first match of the specified text.
      • match

        public static TextMatch match(String text,
                      int textOccurrence)
        Returns the text match object which can be used to find the n-th match of the specified text.
        Parameters:
        text - the text to search for.
        textOccurrence - 0-based ordinal number of the text's occurrence.
        Returns:
        the text match object which can be used to find the n-th match of the specified text.