Hi all, I am validating PAN number ( 5 char 4 digits 1 char). I used PRXMATCH('/[a-zA-Z]{5}\d{4}[a-zA-Z]/',PAN ). But whenever I close the job and open again I get this PRXMATCH('/[Missing Token]{5}\d{4}[Missing Token]/',PAN ). Please help me how to resolve this. Also I tried this. This also not working. PRXMATCH('/\w{5}\d{4}\w/',PAN).
... View more