Hello
I would like to remove the character located a the Second position of a string in the character variable IDCODE.
Do you know how to do that ?
Thank you.
data class;
set sashelp.class (keep=name);
newname=cats(substr(name,1,1),substr(name,3));
run;
data class;
set sashelp.class (keep=name);
newname=cats(substr(name,1,1),substr(name,3));
run;
Maybe something like:
idcode = cats(first(idcode), substr(idcode, 3));
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 save with the early bird rate—just $795!
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.