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;

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!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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