Dear,
In my data the following values present. I need to remove characters in parenthesis in the chracter value. Please help. Thank you
data
ID value
1 0.10 (00 min) hours post-dose
1 2 (pre-2nd dose) (-2 min) hours post-dose
1 Pre-dose
output needed
id value
e
1 0.10 HOURS POST-DOSE
1 2 HOURS POST-DOSE
1 Pre-dose
As long as you don't have brackets in brackets the following should do the job:
data have;
infile datalines truncover dlm='|';
input ID:$1. value $100.;
datalines;
1|0.10 (00 min) hours post-dose
1|2 (pre-2nd dose) (-2 min) hours post-dose
1|Pre-dose
;
run;
data sample;
set have;
length value_want $100;
value_want=prxchange('s/\s*\(.*\)\s*/ /oi',-1,value);
run;
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.