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;

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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