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

how to fill blanks with underscore, I have city_name variable that has multiple words, so of them have multiple blanks and dashes (-).

I tried this way:

data city;

set city;

city_name=trim(city_name);

city_name=compres(city_name, '-');

city_name=tranwrd(city_name, ' ','_');

run;

But I am getting underscores at the end of city name.  How to solve this problem?

1 ACCEPTED SOLUTION

Accepted Solutions
Haikuo
Onyx | Level 15

you will need to remove the trailing blanks on the fly:

data city;

set city;

/*city_name=trim(city_name);*/

city_name=compress(city_name, '-');

city_name=tranwrd(trim(city_name), ' ','_');

run;

View solution in original post

3 REPLIES 3
Haikuo
Onyx | Level 15

you will need to remove the trailing blanks on the fly:

data city;

set city;

/*city_name=trim(city_name);*/

city_name=compress(city_name, '-');

city_name=tranwrd(trim(city_name), ' ','_');

run;

nbonda
Obsidian | Level 7

Thank you...what's the difference in using trim function separately and on the fly

Haikuo
Onyx | Level 15

It is not about trim function or any function, SAS data step uses FIXED length variables, so if not 'on the fly', even the blanks have been removed by Trim function (in this case), Blanks will be padded back in all the way to the length of your variable next time when you call it.

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