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

If I want to write some data to a text file, where I have an ID variable and a numeric variable X, and I want X to begin in column 29, I can use code like this

data _null_;

     set mydata;

     file "myfile.txt";

     put id $12. @29 X;

run;

But suppose I am creating a text string as a data step variable, rather than writing to a text file, and I want X to always begin in column 29, regardless of the length of the ID variable (which can be any number of characters, but less than 29 characters).

Is there an equivalent to the @29, something that works, something like this:

data _null_;

     set mydata;

     textstr=id||@29 X; /* I know this line doesn't work, but it illustrates what I am trying to do */

run;

--
Paige Miller
1 ACCEPTED SOLUTION

Accepted Solutions
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Just use substr:

data temp;

  length var $200;

  var="Something here";

  substr(var,29,1)="A";

run;

View solution in original post

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

Just use substr:

data temp;

  length var $200;

  var="Something here";

  substr(var,29,1)="A";

run;

PaigeMiller
Diamond | Level 26

RW9 wrote:

Just use substr:

data temp;

  length var $200;

  var="Something here";

  substr(var,29,1)="A";

run;

That works fine! Thank you! I have never used substr on the left hand side of the equal sign before.

--
Paige Miller
andreas_lds
Jade | Level 19

data work.have;

   length

      id $ 28

      text $ 30

   ;

   input id text;

   datalines;

1001 Bob

73 Susan

2434813 Bill

79746746734 Marry

;

run;

data work.want;

   set work.have;

   length mystr $ 100;

   format id $29.;

   mystr = cat(id, text);

   put mystr;

   put id $28. text;

run;

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