BookmarkSubscribeRSS Feed
frupaul
Quartz | Level 8

Hi All,

 

I have been struggling to use the prxmatch function to validate email addresses. Can anyone direct me to a resource to use please?

 

THanks

3 REPLIES 3
Reeza
Super User

In general, you'll find macros and examples most easily on LexJansen.com

 

https://lexjansen.com/search/searchresults.php?q=prx%20email%20addresses

 

 

ChrisNZ
Tourmaline | Level 20

prxmatch uses Perl regular expressions (except for the more arcane expressions), so most examples on the web can be used in prxmatch.

 

Here is a simple one.

 

data TEST;
  input EMAIL :$60.;  
  IS_VALID=prxmatch('/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,64}$/i',strip(EMAIL));
cards;       
robot@sas.com            
james.taylor@sas.co.nz
james@taylor@sas.co.nz
run;
IS_VALID
1
1
0
andreas_lds
Jade | Level 19

There is a discussion on stackoverflow: https://stackoverflow.com/questions/201323/how-to-validate-an-email-address-using-a-regular-expressi... about validating e-mail addresses. If your code needs to be 100% RFC822 compliant, the expression is a bit more complex 😉

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 3 replies
  • 1035 views
  • 1 like
  • 4 in conversation