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\srecognise 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.