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));
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.