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

The Boston Area SAS Users Group (BASUG) is hosting our in person SAS Blowout on Oct 18!
This full-day event in Cambridge, Mass features four presenters from SAS, presenting on a range of SAS 9 programming topics. Pre-registration by Oct 15 is required.
Full details and registration info at https://www.basug.org/events.

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

The Boston Area SAS Users Group (BASUG) is hosting our in person SAS Blowout on Oct 18!
This full-day event in Cambridge, Mass features four presenters from SAS, presenting on a range of SAS 9 programming topics. Pre-registration by Oct 15 is required.
Full details and registration info at https://www.basug.org/events.
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.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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