Hi,
I have a big data set with more than 4000 columns and need to keep columns that have specific sequence of characters in their name (e.g. "_US_"). Can I that using wildcards in "Keep" statement?
thank you
Hello,
If the sequence is in the middle of the character name you can select those variable in a macro statement separated by space and
use this macro variable in a keep statement.
For doing this operation you shall use the dictionary table - vcolumn:
proc sql;
select name into :vr separated by ' '
from sashelp.vcolumn
where libname eq 'SASHELP' and memname eq 'CLASS'
and name like '%h%';
quit;
data want;
set sashelp.class;
keep &vr;
run;
Hi,
On a similar pattern as per @Loko suggestion:
proc contents data=have out=vars(keep=name);
run;
proc sql;
select name into :vars_needed separated by ' '
from vars
where find(name,"_US_")>0;
quit;
%put &vars_needed;
I really thank all of you for you replies,
The solution using proc sql worked fine,
(I was just wondering if a more ''complex'' KEEP statement could do the job but it seems there is no such possibility)
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for 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.