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);
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.