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
data want;
var='B4071234 1234 11111111';
want=substr(var,anyspace(var));
run;
Hi,
Thanks for the quick response.
What do you mean anyspace ? number of character to remove ?
want=substr(var,anyspace(var));
Thanks again.
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
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);
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.