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

Hi,

I am trying to run a PRXPOSN/PRXPARSE function within a PROC SQL select statement:

Example:

SELECT TRIM(PRXPOSN(PRXPARSE("/(stringpattern)/"),1,t1.textfield)) as ReturnedString

FROM WORK.TABLE t1;


Using the same pattern in a prxmatch, I am obtaining non-zero values. However, I am not receiving any text from the select statement outlined above.

Any suggestions?

Thanks for your help in advance.

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

I found the following in a SAS-L post.  It may provide the code which you could mimic to achieve what you want:

proc sql undo_policy=none;


       *   The regex does a replace with a capture rather than
       *   a straight replace.  I could not figure out how to
       *   make the straight capture work, as it involves
       *   passing a parsed regex id from a prxmatch to prxposn.
       *   This regex matches the whole string, capturing the
       *   contents inside the parens, and replaces the whole
       *   string with the paren contents, and calling the result
       *   paren_contents.  You see an extra set of parens
       *   escaped with '\' because you need to identify them
       *   as strings in your source string, and since they are
       *   special characters in a regex indicating string capture,
       *   they have to be escaped.
       ;
   create table want as
   select
       *,
       prxparse('/.*?\((.*)\).*/') as prxm,
       case when prxmatch(calculated prxm,the_source_string) then
       prxposn(calculated prxm , 1, the_source_string ) else ' '
        end
           as paren_contents
   from
       have
   ;


quit;

View solution in original post

2 REPLIES 2
art297
Opal | Level 21

I found the following in a SAS-L post.  It may provide the code which you could mimic to achieve what you want:

proc sql undo_policy=none;


       *   The regex does a replace with a capture rather than
       *   a straight replace.  I could not figure out how to
       *   make the straight capture work, as it involves
       *   passing a parsed regex id from a prxmatch to prxposn.
       *   This regex matches the whole string, capturing the
       *   contents inside the parens, and replaces the whole
       *   string with the paren contents, and calling the result
       *   paren_contents.  You see an extra set of parens
       *   escaped with '\' because you need to identify them
       *   as strings in your source string, and since they are
       *   special characters in a regex indicating string capture,
       *   they have to be escaped.
       ;
   create table want as
   select
       *,
       prxparse('/.*?\((.*)\).*/') as prxm,
       case when prxmatch(calculated prxm,the_source_string) then
       prxposn(calculated prxm , 1, the_source_string ) else ' '
        end
           as paren_contents
   from
       have
   ;


quit;

Brian
Obsidian | Level 7

Thanks. Splitting up the prxparse and adding calculated fixed the problem. Greatly appreciated. It would be nice for prxposn to include a perl-regex argument similar to to prxchange.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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