BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
hhchenfx
Rhodochrosite | Level 12

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;

 

1 ACCEPTED SOLUTION

Accepted Solutions
nehalsanghvi
Pyrite | Level 9

You can use 'contains' in a where statement:

 

data have2;

set have;

where name contains 'abc1';

run;

View solution in original post

3 REPLIES 3
nehalsanghvi
Pyrite | Level 9

You can use 'contains' in a where statement:

 

data have2;

set have;

where name contains 'abc1';

run;

Shmuel
Garnet | Level 18

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

hhchenfx
Rhodochrosite | Level 12
Thanks a lot for your suggestions.
HHC
How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1304 views
  • 3 likes
  • 3 in conversation