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

Hello:

 

I would like to remove extra _ from the oldname and assign one _ back to the string.   Please advice how to do it.  Thanks.

 

data test;

infile datalines dsd;

input Oldname : $150. Newname : $150.;

datalines;

gr__major_get__yes, gr_major_get_yes

gr_img_com___abn_metr_gyr, gr_img_com_abn_metr_gyr

if_excu_con_mer__, if_excu_con_mer

_roi_num_email___view_yes_, roi_num_email_view_yes

;

 

1 ACCEPTED SOLUTION

Accepted Solutions
ybz12003
Rhodochrosite | Level 12

Thanks for asking.  I have figured out by myself. 

View solution in original post

4 REPLIES 4
ballardw
Super User

Please show the required output. " assign one _ back to the string" is very ambiguous.

ybz12003
Rhodochrosite | Level 12

Thanks for asking.  I have figured out by myself. 

ybz12003
Rhodochrosite | Level 12

The output is shown in the newname

kiranv_
Rhodochrosite | Level 12

something like this

newname= prxchange('s/_{2,}/_/',-1, prxchange('s/^_|_$//', -1, trim(oldname)));

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

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