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;

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1143 views
  • 0 likes
  • 2 in conversation