BookmarkSubscribeRSS Feed
bits
Fluorite | Level 6
My dataset having character variable as "PANCARD" having total 10 characters and i want to extract a data from 10 thousand records using pattern matching.
Conditions are:-
1) first 5 characters should be alphabets
2) then 4 charcters should be numeric
3) last one is alphabet.
For example.. DHPLO9635G
4 REPLIES 4
bits
Fluorite | Level 6
 
art297
Opal | Level 21

You didn't say what you want to do once you found a record that matched the condition. The following will find the matching records:

 

data have;
  input pancard $10. x y;
  if prxmatch("m/[A-Z]{5}\d{4}[A-Z]/oi",pancard) > 0 then found=1;
  else found=0;
  cards;
DHPLO9635G 1 1
DH1LO9635G 0 0
;

 

HTH,

Art, CEO, AnalystFinder.com

 

bits
Fluorite | Level 6

@art297 can we do the same without using PRXMATCH function? 

art297
Opal | Level 21

There's often more than one possible solution to solve a given problem with SAS. In this case you could use something like:

 

data have;
  input pancard $10. x y;
  if (countc(substr(pancard,1,5),,'ai')+
    countc(substr(pancard,6,4),,'d')+
    countc(substr(pancard,10,1),,'ai')) eq 10 then found=1;
  else found=0;
  cards;
DHPLO9635G 1 1
DH1LO9635G 0 0
;

HTH,

Art, CEO, AnalystFinder.com

 

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

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.

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
  • 4 replies
  • 1059 views
  • 0 likes
  • 2 in conversation