match
(string, default: ""): The pattern to match against. This can be a regular expression or a simple string.string
(string, default: ""): The input string to check for a match.result
(boolean): Returns true
if the input string matches the specified pattern, false
otherwise.match
input to specify the pattern you want to match. This can be a regular expression or a simple string.string
input.result
output will emit true
if the input string matches the pattern, false
otherwise.^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}$
to the match
input. This regular expression matches common email address formats.string
input of the Match node.result
output to a Filter node. The Filter node will only pass through the original string if it matches the email format./i
for case-insensitive matching.., +, *, ?
have special meaning in regular expressions and need to be escaped with a backslash \
to match them literally.