BookmarkSubscribeRSS Feed
RaviKommuri
Fluorite | Level 6

Hello,

I have a character string  which contains the words with the combination of characters, numbers and special character.

Now I would like to find/extract only the particular string which is in below mentioned format.

Input string :  " 10% discount to be given to accidental insurance customers in 9874-04562 on a pro rata basis"

Output Sub string  : 9874-04562

Thanks in advance.

1 REPLY 1
Vladislaff
SAS Employee

You can use regular expressions:

data _null_;

   if _N_ = 1 then

   do;

      retain rId;

      rId = prxparse('/\d{4}-\d{5}/');

   end;

   str = ' 10% discount to be given to accidental insurance customers in 9874-04562 on a pro rata basis';

   call prxsubstr(rId, str, pos, len);

   if pos ^= 0 then

   do;

      match = substr(str, pos, len);

      put match=;

   end;

run;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 1 reply
  • 753 views
  • 0 likes
  • 2 in conversation