Regular Expression Functions

Match a Regular Expression.
  • IF_REGEX_MATCH

    Perform a regular expression match

    IF_REGEX_MATCH("/(a)(b)*(c)/","ac")
    Try this example
    pattern (string)
    The pattern to search for, as a string.
    subject (string)
    The input string.
  • PREG_MATCH

    Perform a regular expression match

    PREG_MATCH("/(a)(b)*(c)/","ac")
    Try this example
    pattern (string)
    The pattern to search for, as a string.
    subject (string)
    The input string.