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

Hello,

 

I import an excel file, the data has the line breaks, so, sometimes ,in my sas data I have the multiple spaces.

I want to replace this spaces by  ^n but my code doesn't work:

 

OBJECTIVES2=prxchange('s/(^|\b)\s{2,}(\b|$)/^n/oi',-1,OBJECTIVES);

 

Maybe you know some other options to do that?

 

 

Thank you for your help!

Best regards,

Marie

1 ACCEPTED SOLUTION

Accepted Solutions
ChrisNZ
Tourmaline | Level 20

A space means \b is matched, so I am unsure what the intent of your expression is.

 

> I want to replace this spaces by  ^n 

Like this? It's the same as your expression.

OBJECTIVES2=prxchange('s/\s{2,}/^n/',-1,OBJECTIVES);

 

 

View solution in original post

3 REPLIES 3
ChrisNZ
Tourmaline | Level 20

A space means \b is matched, so I am unsure what the intent of your expression is.

 

> I want to replace this spaces by  ^n 

Like this? It's the same as your expression.

OBJECTIVES2=prxchange('s/\s{2,}/^n/',-1,OBJECTIVES);

 

 

SASdevAnneMarie
Barite | Level 11
Great! It works! Thank you!
Patrick
Opal | Level 21

I would remove the line breaks from your data. That's only going to create problems "somewhere".

Below RegEx replaces one or multiple consecutive whitespace characters with a single blank.

OBJECTIVES2=OBJECTIVES;
OBJECTIVES2=prxchange('s/\s+/ /oi',-1,OBJECTIVES2);

 

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

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
  • 3 replies
  • 464 views
  • 0 likes
  • 3 in conversation