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.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

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