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
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 save with the early bird rate—just $795!
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.