I have some words which is something like "abc % (%)". I want the result like "abc (%)". I tried either "translate" or "tranwrd" function. But the result is "abc % (". I want to know what is the reason for this problem.
Hope someone could help me.
Thanks
data try;
txt1="abc % (%)";
x=translate(txt1, "% (%)", "(%)");
y=tranwrd(txt1, "% (%)", "(%)");
run;
@pengznuc wrote:
I have some words which is something like "abc % (%)". I want the result like "abc (%)". I tried either "translate" or "tranwrd" function. But the result is "abc % (". I want to know what is the reason for this problem.
Hope someone could help me.
Thanks
data try; txt1="abc % (%)"; x=translate(txt1, "% (%)", "(%)"); y=tranwrd(txt1, "% (%)", "(%)"); run;
The TRANWRD() call works fine.
TRANSLATE() is not the function for this as that just replaces individual characters. You call is saying the replace the there characters listed in the last argument with the corresponding first three characters in the first argument. So ( -> % and % -> space and ) -> (.
@pengznuc wrote:
I have some words which is something like "abc % (%)". I want the result like "abc (%)". I tried either "translate" or "tranwrd" function. But the result is "abc % (". I want to know what is the reason for this problem.
Hope someone could help me.
Thanks
data try; txt1="abc % (%)"; x=translate(txt1, "% (%)", "(%)"); y=tranwrd(txt1, "% (%)", "(%)"); run;
The TRANWRD() call works fine.
TRANSLATE() is not the function for this as that just replaces individual characters. You call is saying the replace the there characters listed in the last argument with the corresponding first three characters in the first argument. So ( -> % and % -> space and ) -> (.
thanks a lot
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.