Dear,
I have variable(value) whose values contain 'NCS' . I need to remove the string. Please help.
Thanks
value
"sentence of words NCS"
"sentence of words (NCS)"
"NCS , sentence of words"
"NCS sentence of words"
"NCS; sentence of words"
Look at TRANWRD function
You may try COMPRESS function too.
new_Value = compress(Value, 'NCS',' ');
You have comma, semicolon, '(' and ')'.
These also can be compressed into blanks or none.
You didn't post then output yet.
data have;
input value $quote40.;
cards4;
"sentence of words NCS"
"sentence of words (NCS)"
"NCS , sentence of words"
"NCS sentence of words"
"NCS; sentence of words"
;;;;
run;
data want;
set have;
new_value=prxchange('s/\bNCS\b//i',-1,value);
run;
Hi
Thanks for the help. It worked, but removed only 'NCS' characters only.
output;
"sentence of words " "sentence of words ()" " , sentence of words" " sentence of words" "; sentence of words"
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.