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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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