Hi i am trying remove spl char at a time . but it's not work proparly .
exp;
data exp;
a='i will try to removie spl char @ and another spl $';
a1=tranwrd(a,'@$' , '' );
run;
i want a1 varibel with out spl char;
To REMOVE characters use COMPRESS funtion. TRANWRD is the wrong funtion for your problem.
To REMOVE characters use COMPRESS funtion. TRANWRD is the wrong funtion for your problem.
Or translate may be what you were thinking of.
data exp; a='i will try to removie spl char @ and another spl $'; a1=translate (a,'','@$' ); run;
@ballardw wrote:
Or translate may be what you were thinking of.
data exp; a='i will try to removie spl char @ and another spl $'; a1=translate (a,'','@$' ); run;
Translate doesn't remove the characters you are replacing with blanks.
Understood @data_null__ but since the OP started with one of the translate functions I was hoping to point him to the slightly more correct option.
And since there was not actual desired output posted ...
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.