raw data
abc(123)
(123)abc(pqr)
How to remove text inside brackets including brackets so the final data is below:
final data
abc
abc
The following should work:
data raw;
informat text $80.;
input text &;
cards;
abc(123)
(123)abc(pqr)
;
data want;
set raw;
want = prxchange('s/\(([^\)]+)\)//i', -1, text);
run;
Art, CEO, AnalystFinder.com
The following should work:
data raw;
informat text $80.;
input text &;
cards;
abc(123)
(123)abc(pqr)
;
data want;
set raw;
want = prxchange('s/\(([^\)]+)\)//i', -1, text);
run;
Art, CEO, AnalystFinder.com
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.