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

BASUG is hosting free webinars Next up: Mark Keintz presenting History Carried Forward, Future Carried Back: Mixing Time Series of Differing Frequencies on May 8. Register now at the Boston Area SAS Users Group event page: 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

BASUG is hosting free webinars Next up: Mark Keintz presenting History Carried Forward, Future Carried Back: Mixing Time Series of Differing Frequencies on May 8. Register now at the Boston Area SAS Users Group event page: 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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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