BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
fatihekici
Calcite | Level 5

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

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
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;

View solution in original post

2 REPLIES 2
Ksharp
Super User
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;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 2 replies
  • 793 views
  • 1 like
  • 3 in conversation