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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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
  • 619 views
  • 1 like
  • 2 in conversation