matches()
Last updated
Was this helpful?
Last updated
Was this helpful?
The matches
function returns true()
if input
matches the regular expression supplied as pattern
as influenced by the value of modifiers
, if present; otherwise, it returns false()
. Supported modifiers are i
("IGNORECASE"), m
("MULTILINE"), s
("DOTALL") and x
("EXTENDED").
Internally, the FIT Server uses .
matches("FIT", "^f.", "i")
evaluates to true()