Hello Team -
I am using RegEX in formula tool to identify the string that could be an address. I am trying to check if the string has two upper case letters in sequence followed by a space and then 5 digits . But the formula appears to be not working as expected for the 6th row in the input . Please see below . Any clue on what am I doing wrong here ? Appreciate your inputs.
Thanks,
Arun
Solved! Go to Solution.
Hi @Arun_KV
Add a 0 at the end of your REGEX_Match expression.
REGEX_Match(Field, "expression", 0)
0 indicates case sensitivity.
Cheers,
Thanks ..It did the trick . But \u does not have any relevance here ?