BookmarkSubscribeRSS Feed
knveraraju91
Barite | Level 11

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

 

 

1 REPLY 1
Patrick
Opal | Level 21

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;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 701 views
  • 1 like
  • 2 in conversation