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

How does one identify 0 or more spaces? I thought that the following would work, but it fails for the 2nd record ("Jones,  Fred") because the , and F are separated by two spaces. It works for all of the other records.

data ReversedNames;

   input name & $32.;

   datalines;

Smith,Tom

Jones,  Fred

Kavich, Kate

Turley, Ron

Dulix, Yolanda

;

/* Reverse last and first names with a DATA step. */

data names;

   set ReversedNames;

   name = prxchange('s/(\w+),\s*(\w+)/$2 $1/', -1, name);

run;

1 ACCEPTED SOLUTION

Accepted Solutions
FriedEgg
SAS Employee

Art,

There is no issue with your regular expression.  The issue is with your reading of the ReversedNames cards.  & will only move past the first space with list input.

filename ft15f001 temp;

data ReversedNames;

   length name $ 32;

   infile ft15f001 length=len;

   input @1 name $varying. len;

   list;

   parmcards;

Smith,Tom

Jones,  Fred

Kavich, Kate

Turley, Ron

Dulix, Yolanda

;

View solution in original post

2 REPLIES 2
FriedEgg
SAS Employee

Art,

There is no issue with your regular expression.  The issue is with your reading of the ReversedNames cards.  & will only move past the first space with list input.

filename ft15f001 temp;

data ReversedNames;

   length name $ 32;

   infile ft15f001 length=len;

   input @1 name $varying. len;

   list;

   parmcards;

Smith,Tom

Jones,  Fred

Kavich, Kate

Turley, Ron

Dulix, Yolanda

;

art297
Opal | Level 21

Matt,

Thanks! While I've obviously forgotten things I know, at least I'm FINALLY getting around to learning at least a little about regular expressions!

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