Hi,
I have a requirement of passing certain characters in the expression. It should pass Numbers, Alphabets, certain special characters and Latin characters.
The code is as below:
If
REGEX_MATCH([FIELD],'[A-Za-z0-9\.\·\`\ \\n\,\-\\ÀÈÌÒÙàèìòùÁÉÍÓÚÝáéíóúýÂÊÎÔÛâêîôûÃÑÕãñõÄËÏÖÜŸäëïöüŸ¡¿çÇŒœßØøÅ寿ÞþÐð]+') = 0
then
'F'
else
'T'
endif
I have entered '\n' as in the list of allowable characters but the code is still catching New line characters as exceptions.
Any thoughts or inputs are appreciated.
Thank you.