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

Hi, I'd like to use "wildcards" in an if/then statement, and am wondering if I'm correct in thinking the "%" sign is the wildcard for any character (including numbers that are "type"-ed as "character" and not "numeric" entries).  In particular, I'm trying to do the following.  I have a dataset A, that looks something like this:

patient          blah          other variables

Joe              aaaa21xy          .....

Bob              aaaa34zq          .....

Tom              rsbq76zv          .....

 

From which I want to create a dataset B, containing all patients for which the "blah" variable begins with the characters "aaaa" (and can have any characters after this).  In othe words, dataset B would looks like this:

patient          blah          other variables

Joe              aaaa21xy          .....

Bob              aaaa34zq          .....

 

I tried & failed to do this with the following if/then statement:

data datasetB; set datasetA;
if blah='aaaa%%%%' then output;
run;

 

I've also tried to use "____" or ":", instead of the "%%%%", and these didn't work either (outputs are all empty datasets).  Thanks in advance for your help!

1 ACCEPTED SOLUTION

Accepted Solutions
slchen
Lapis Lazuli | Level 10

There are some great differences between if and where .  Here is one case.

where blah like 'aaaa%';

or

if blah=:'aaaa';

 

 

View solution in original post

3 REPLIES 3
slchen
Lapis Lazuli | Level 10

There are some great differences between if and where .  Here is one case.

where blah like 'aaaa%';

or

if blah=:'aaaa';

 

 

beginner
Calcite | Level 5

Thank you!

Astounding
PROC Star

 A couple of additional notes that might be useful ...

 

=: does not mean "begins with".  It means make the comparison based on whichever string has the shorter length.  Ignore any characters beyond that length in the longer string.  So these comparisons are identical:

 

if blah =: 'aaaaa';

if 'aaaaa' =: blah;

 

Also, you can use =: with the IN operator, with strings of different length:

 

if blah in ('aaaaa', 'abc', 'bb');

 

Good luck.

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 4247 views
  • 1 like
  • 3 in conversation