$$test
Checks if a string matches a certain pattern
Usage​
"$$test(<pattern>):{input}"
Returns​
boolean
Arguments​
Argument | Type | Values | Required / Default Value | Description |
---|---|---|---|---|
pattern | string | Regex | Yes | Regular expression to match against input string |
Examples​
Input
Definition
Output
"hello"
"$$test(he):$"
true
"hello"
"$$test(xe):$"
false