let's assume the data should like:
Word contains
the best gift gift
SAS programming SAS
apt no: 12356 12356
The intended output is:
Word contains
the best gift
programming SAS
apt no: 12356
How can I do this? Thanks for every help
data have;
input Word & $40. contains $;
cards;
the best gift gift
SAS programming SAS
apt no: 12356 12356
;
data want;
set have;
want=prxchange('s/\b'||strip(contains)||'\b//i',-1,word);
run;
What is the logic?
data have;
input Word & $40. contains $;
cards;
the best gift gift
SAS programming SAS
apt no: 12356 12356
;
data want;
set have;
want=prxchange('s/\b'||strip(contains)||'\b//i',-1,word);
run;
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 lock in 2025 pricing—just $495!
Get started using SAS Studio to write, run and debug your SAS programs.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.