BookmarkSubscribeRSS Feed
chennupriya
Quartz | Level 8

Adding trailing blanks to alphanumeric characters SAS code

6 REPLIES 6
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Hi,

data want;

  length b $200;

  a="ABCD1234";

  b=repeat("0",20-length(strip(a)))||strip(a);

run;

For trailing, just move the strip(a) before the repeat.

stat_sas
Ammonite | Level 13

data want;

  length b $20;

  a="ABCD1234";

  b=a;

run;

RW9
Diamond | Level 26 RW9
Diamond | Level 26

Oh, trailing blanks, I should read the question more thoroughly.

chennupriya
Quartz | Level 8

hi ,

i want to export to Csv file after coding

sso we use something like dat_null_

AAnd put function now length is $12.

and it shd be A25

Astounding
PROC Star

If you are using DATA _NULL_ and a PUT statement to write out the data, it is easy to write out trailing blanks.  Add a format specification to the PUT statement, for example:

put varname $25. ','  ... more variables ...;

This will write a total of 25 characters for VARNAME, including trailing blanks as needed to reach that length of 25.

Good luck.

Tom
Super User Tom
Super User

Why?  You mention writing a CSV, but by definition a CSV file would normally NOT have trailing blanks.

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

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 6 replies
  • 1754 views
  • 0 likes
  • 5 in conversation