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);

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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