SAS Programming

DATA Step, Macro, Functions and more
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-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 4 replies
  • 1203 views
  • 0 likes
  • 3 in conversation