Recently, I met the same problem, here is my solution:
%macro correct_sas_name(name);
%let flag=%sysfunc(notname(&name));
%do %until(&flag=0);
%let char=%substr(&name,&flag,1);
%let name=%sysfunc(TRANWRD(&name,&char,_));
%let flag=%sysfunc(notname(&name));
%end;
h_&name
%mend;
%let test=SAS#123!34;
%let correct_name=%correct_sas_name(&test);
%put &test;
%put &correct_name;
The LOG:
Have a look at the function nliteral : Converts a character string that you specify to a SAS name literal.
This is good way, thanks.
But, normally this way is not that common.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.