You didn't say what you want to do once you found a record that matched the condition. The following will find the matching records:
data have;
input pancard $10. x y;
if prxmatch("m/[A-Z]{5}\d{4}[A-Z]/oi",pancard) > 0 then found=1;
else found=0;
cards;
DHPLO9635G 1 1
DH1LO9635G 0 0
;
HTH,
Art, CEO, AnalystFinder.com
@art297 can we do the same without using PRXMATCH function?
There's often more than one possible solution to solve a given problem with SAS. In this case you could use something like:
data have;
input pancard $10. x y;
if (countc(substr(pancard,1,5),,'ai')+
countc(substr(pancard,6,4),,'d')+
countc(substr(pancard,10,1),,'ai')) eq 10 then found=1;
else found=0;
cards;
DHPLO9635G 1 1
DH1LO9635G 0 0
;
HTH,
Art, CEO, AnalystFinder.com
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.