data one;
input a b c a_123 b_123 x_123 y_123 z_123;
run;
data two;
set one;
keep a_123 b_123 x_123 y_123 z_123;
run;
My question is if there are too much variables end with '_123'(I can't list all of them here),how to keep these variables in an easy way?
I know ':' operator can keep variables start with special characters but not end with.
Thanks!
How about:
(note: libname and memname must be capital letters)
proc sql noprint;
select name into : names separated by ' '
from dictionary.columns
where libname='WORK' and memname='HAVE' and upcase(name) like '%_123' ;
quit;
data want;
set have(keep=&names);
run;
Linlin
Just curious....
How to do this in Data Step???
You could have more than one data step approaches. For one, you could use meta view for data step, such as sashelp.vcolumn, and use a combination of substr() and length to obtain the variable names. For two, you could use array vname to grab the variable names that meets criteria.
You could also use proc contents instead of SQL to get the variables names.
However, in case, by supporting operators such as 'like', 'contains', SQL is more native to the job.
Haikuo
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.