BookmarkSubscribeRSS Feed
de
Calcite | Level 5 de
Calcite | Level 5

Hello,

 

I'm trying to remove 'B4071234'    from subjid variable -B4071234 1234 11111111

data final
set test;
substr(strip(CONT_CD),1,8)='';

run;

 

I'm getting error.

 

Thanks

4 REPLIES 4
novinosrin
Tourmaline | Level 20
data want;
var='B4071234 1234 11111111';
want=substr(var,anyspace(var));
run;
de
Calcite | Level 5 de
Calcite | Level 5

Hi,

 

Thanks for the quick response. 

 

What do you mean anyspace ?  number of character to remove ?

want=substr(var,anyspace(var));

 Thanks again.

novinosrin
Tourmaline | Level 20

basically that logic finds a the first blank space which is the delimiter and extracts all chars after the delimiter space, consequently ignoring the chars you mentioned above

Astounding
PROC Star

When SUBSTR appears to the left of the equal sign, the first parameter must be a variable name (not an expression such as using STRIP).  You could try something along the lines of:

 

CONT_CD = substr(CONT_CD, 10);

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 4 replies
  • 869 views
  • 0 likes
  • 3 in conversation