Hello,
Information into SAS dataset may not be entered with the same format, specially for policy number.
In the same dataset we could have those policy numbers
M49999999
P4M49999999
Or
123-4567
123A4567
So is there a way to get the various policy number parttern such as;
Cnnnnnnnn
Cncnnnnnnnn
nnnsnnnm
Nnncnnnn
Where n is numeric, c character and s is a special character such as –
Maybe something like this:
data have;
input column $20.;
datalines;
M49999999
P4M49999999
123-4567
123A4567
;
run;
data want;
set have;
from='ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 -)(*&^%$#@!{}[]:;.,/?\|';
to ='CCCCCCCCCCCCCCCCCCCCCCCCCCNNNNNNNNNNSSSSSSSSSSSSSSSSSSSSSSSS';
pattern=translate(upcase(column),to,from);
drop from to;
run;
Maybe something like this:
data have;
input column $20.;
datalines;
M49999999
P4M49999999
123-4567
123A4567
;
run;
data want;
set have;
from='ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 -)(*&^%$#@!{}[]:;.,/?\|';
to ='CCCCCCCCCCCCCCCCCCCCCCCCCCNNNNNNNNNNSSSSSSSSSSSSSSSSSSSSSSSS';
pattern=translate(upcase(column),to,from);
drop from to;
run;
I don't know what it means to "get" a policy number pattern.
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 lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.