This can be translated to: "If Score is greater than 20 then go to this path. Otherwise, go to the other path."
Contains
but will match the inverse./
and contain a valid regex pattern.Example:/^hello$/
will match if the string is strictly equal to “hello”./hello/
will match if the string contains “hello”. Like “hello world”./hello/i
will match if the string contains “hello” case-insensitive. Like “Hello world”./[0-9]+/
will match if the string contains one or more digits. Like “123”.Matches regex
but will match if the provided value does not match
the regex pattern.