Class RegexFunctionSansFlags

All Implemented Interfaces:
Callable, FunctionItem, GroundedValue, Item, Sequence

public class RegexFunctionSansFlags extends SystemFunction
This class implements any of the functions matches(), replace(), tokenize(), analyze-string(), in which the final "flags" argument is omitted.
  • Constructor Details

    • RegexFunctionSansFlags

      public RegexFunctionSansFlags()
  • Method Details

    • makeFunctionCall

      public Expression makeFunctionCall(Expression... arguments)
      Make an expression that either calls this function, or that is equivalent to a call on this function
      Overrides:
      makeFunctionCall in class SystemFunction
      Parameters:
      arguments - the supplied arguments to the function call
      Returns:
      either a function call on this function, or an expression that delivers the same result
    • call

      public Sequence call(XPathContext context, Sequence[] args) throws XPathException
      Invoke the function. Used only for dynamic calls.
      Parameters:
      context - the XPath dynamic evaluation context
      args - the actual arguments to be supplied
      Returns:
      the result of invoking the function
      Throws:
      XPathException - if a dynamic error occurs within the function