data have;
text = "The quick brown fox jumps over 23 lazy dogs.(1-27) The quick brown-fox jumps over the lazy dog.(28)";
run;
data want;
set have;
text2 = compress(text,"()-1234567890");
run;
You can try to use a pearl regular expression:
data want;
set have;
text2=prxchange('s/\([\d-]+\)//i', -1, text);
run;
This looks for the pattern \([\d-]+\) in the variable 'text' as many times as needed (second argument = -1)
\([\d-]+\) = a parenthesis followed by one or more digits or hyphens followed by a parenthesis.
You can try to use a pearl regular expression:
data want;
set have;
text2=prxchange('s/\([\d-]+\)//i', -1, text);
run;
This looks for the pattern \([\d-]+\) in the variable 'text' as many times as needed (second argument = -1)
\([\d-]+\) = a parenthesis followed by one or more digits or hyphens followed by a parenthesis.
You're welcome @NewSASPerson !
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.