How to use REGEX_MATCH function ?
1 Like
The REGEX_MATCH function is used to check if the value at a given path matches a specific regex.
Syntax–> REGEX_MATCH(regex, path)
Let’s take the example of a PAN number:
REGEX_MATCH(“^[A-Z]{5}[0-9]{4}[A-Z]{1}$
”,getVal(“tempObject.path”))
1 Like