Hi,
I want to take all records from the below file out where name variable as a certain phrase like "abc1".
In the file the new file will contain record 2 and 3 in the file below.
Thank you so much.
HHC
Data have;
input name $ 20.;
datalines;
cost_ab
value_abc1
textabc12_x
testabc
; run;
You can use 'contains' in a where statement:
data have2;
set have;
where name contains 'abc1';
run;
You can use 'contains' in a where statement:
data have2;
set have;
where name contains 'abc1';
run;
You can use either function contains, as proposed by @nehalsanghvi
or if index(name,'abc1') > 0
in case you are looking for digits in name you can use:
if indexc(name,'012345678') > 0
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!
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.