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

Hi, I'm trying to do something like this to complete some string variable with "@" depending on it length:

 

 

x is a number variable that receives the length

y is a string with multiple length

z is the destination variable

 

x = length(y)

 

if x < 50 then

 

   a || 50 - x  /* at this point I'm trying to put some number of repeated "@" to complete a length of 50 */

 

else

 

   substr(a,1,50) /* if length is greater then 50, I just cut it using substr */

 

end if

 

Regards from Brazil

1 ACCEPTED SOLUTION

Accepted Solutions
user24feb
Barite | Level 11

You could try:

 

Data A;
  Input y $20.;
  Datalines;
SDFED
GDDE CDEX
DFDXCE
DD
;
Run;

%Let x=40;
Data B;
  Set A;
  z=Repeat('@',&x.);
  Substr(z,1,Length(y))=y;
Run;

View solution in original post

2 REPLIES 2
user24feb
Barite | Level 11

You could try:

 

Data A;
  Input y $20.;
  Datalines;
SDFED
GDDE CDEX
DFDXCE
DD
;
Run;

%Let x=40;
Data B;
  Set A;
  z=Repeat('@',&x.);
  Substr(z,1,Length(y))=y;
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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 2 replies
  • 1240 views
  • 0 likes
  • 2 in conversation