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
Catch the best of SAS Innovate 2025 — anytime, anywhere. Stream powerful keynotes, real-world demos, and game-changing insights from the world’s leading data and AI minds.
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.