Regex tester

[string/Regex tester]


Tests whether the input string matches a regular expression. Example: "(?fox|cat) jumps over"


Keywords: string, regular expression, regex

Input ports

  • string: string

    String to be tested against the specified RegEx. Example: "The quick brown fox jumps over the lazy dog. It barked."

  • regex: string

    Regular expression to test the specified string against. Flavour depends on the running environment. Example: "(?fox|cat) jumps over1"

Output ports

  • matched: boolean

    Whether the received string matched the RegEx. Example: true

Last updated