BookmarkSubscribeRSS Feed
theponcer
Quartz | Level 8

I am trying to use modifiers on the compget function. Here's my code:

 

data compged;
set crossjoin;
match=compged(Dog_Nm1, Dog_Nm2,30,"l:i");
run;

This returns an error. Does anyone know how I use these modifiers? (30, l:i)

 

I also noticed that "Pippy Boy" and Pippy" give a value greater than 0 in the code above, but when I do this:

 

Data _Null_ ;
Text1 = "Pippy" ;
Text2 = "Pippy Boy" ;
Test = CompGed( Text2 , Text1 ,"il:") ;
Put Test= ;
Run ;

it returns a value of 0. What?!

3 REPLIES 3
ballardw
Super User

Place the modifiers inside quotes to indicate they are literal values. Without quotes then SAS expects the modifiers to be in a variable and the : is getting treated as some sort of operator in the wrong place:

 

match=compged(Dog_Nm1, Dog_Nm2,30,'l:i');

 

 

theponcer
Quartz | Level 8

Yup, I modified the question when I figured that out. The error is gone, but the problem is still there. I can't get "Pippy Boy" and "Pippy" to match using the colon modifier in the data step, so I'm not sure that it is working correctly even though it IS working in the test code. 

ballardw
Super User

@theponcer wrote:

Yup, I modified the question when I figured that out. The error is gone, but the problem is still there. I can't get "Pippy Boy" and "Pippy" to match using the colon modifier in the data step, so I'm not sure that it is working correctly even though it IS working in the test code. 


Your code when I run it gets a value of 0, which is a perfect match for compged.

 

If your actual values looks like and is not returning 0 then perhaps you have a leading character other than a space character such as a null character, ASCII 255. Which returns 300. I can't post code as the forum changes the NULL to a space but in this code:

Data _Null_ ;
Text1 = "Pippy" ;
Text2 = " Pippy Boy" ;
Test = CompGed( Text2 , Text1 ,"il:") ;
Put Test= ;
Run ;

highlight the space before Pippy in Text2. Then hold the Alt key and type 255 on the number pad (on a Windows system) and release. Then run the code to see 300 as a result

 

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 620 views
  • 0 likes
  • 2 in conversation