Hi, this is probably so easy for some.. But How can I select a field only if is in the format like alpha/numeric/alpha eg. M2H or G8R etc.. if I have GG5 or 4 or 66R .. etc. or anything else like this, I don't want it..
Thanks in advance
data have;
input var $;
cards;
M2H
G8R
GG5
66R
;
DATA WANT;
SET HAVE;
IF PRXMATCH('/[a-zA-Z]\d[a-zA-Z]/',var) >0;
run;
Haikuo
data have;
input var $;
cards;
M2H
G8R
GG5
66R
;
DATA WANT;
SET HAVE;
IF PRXMATCH('/[a-zA-Z]\d[a-zA-Z]/',var) >0;
run;
Haikuo
thank you
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.