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

hi there, can anyone explain in details each component in below codes? I have tried google but no luck to find info that would help me to fully understand the use of prxmatch:

 

if prxmatch('m/^[A-z0-9]\.{4}/', code) then do;

 

m

/

\

.

{4}

 

Thanks 🙂

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

@Suzy_Cat wrote:

hi there, can anyone explain in details each component in below codes? I have tried google but no luck to find info that would help me to fully understand the use of prxmatch:

 

if prxmatch('m/^[A-z0-9]\.{4}/', code) then do;

 

m : operation is matching (optional prefix, almost never used)

/ : pattern delimiter, pattern continues until that character is met again

\ : escapes the special meaning of the period character that follows

. : when escaped, matches a period

{4} : match the previous pattern (a period) exactly 4 times

 

Thanks 🙂


 

PG

View solution in original post

1 REPLY 1
PGStats
Opal | Level 21

@Suzy_Cat wrote:

hi there, can anyone explain in details each component in below codes? I have tried google but no luck to find info that would help me to fully understand the use of prxmatch:

 

if prxmatch('m/^[A-z0-9]\.{4}/', code) then do;

 

m : operation is matching (optional prefix, almost never used)

/ : pattern delimiter, pattern continues until that character is met again

\ : escapes the special meaning of the period character that follows

. : when escaped, matches a period

{4} : match the previous pattern (a period) exactly 4 times

 

Thanks 🙂


 

PG

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