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