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

Hi all,

I would like to know if there is a way to remove the space introduced

by the put statement in the following data step.

data _NULL_;

hel="hel";

put Hel "lo";

run;

Output :

Hel lo

     ^

Of course, I could generate the string in a previous statement, but

this is what I want to avoid since I have a lot of such put statements.

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
Quentin
Super User

One way:

8    data _NULL_;
9      hel="hel";
10     put hel +(-1) "lo";
11   run;

hello

View solution in original post

3 REPLIES 3
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Pop the format in:

data temp;

hel="hel";

put hel $3. "lo";

run;

Quentin
Super User

One way:

8    data _NULL_;
9      hel="hel";
10     put hel +(-1) "lo";
11   run;

hello

gamotte
Rhodochrosite | Level 12

Thanks a lot !

I thought of using the format but the string lengths can vary between observations. "+(-1)" is just what I needed.

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