Skip to main content
Tests each input against a regular expression and emits one boolean per input. Sibling of Equals (strict equality). Match is the right tool for substring, prefix, suffix, or pattern checks; Equals for exact matches.

Configuration

  • Regex pattern — wire the pattern from another node, or type a literal in the inspector.
  • Case insensitive — when on, matching ignores letter case.
  • Unicode — when on, character classes like \w, \d, and \s recognise non-ASCII letters and digits (e.g. Å, Ä, Ö).

Tips

  • Inputs are stringified before matching — works for numbers, dates, etc.
  • Anchor your pattern (^...$) when you mean an exact match; otherwise it is a substring match.

Ports