Hi,
Please clarify what is not expected, provide some example strings in the form of a datastep and where they do not appear as you expect. The help on each of these functions is quite clear:
http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000212224.htm
https://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000212226.htm
And I do not see why you would use the two functions together, unless in concatentaion. Why not just use strip()?
1- strip() replaces these 2
2- It depends on the length of your variable. You'll have trailing spaces if your variable is longer than the text.
Well, cant really tell from that. I ran these two and the output was the same $ab_cd$. Were you using different operating systems, versions of SAS, was it the same data, same options etc. Could be any number of things. For the code though, I would recommend using strip() as its simpler, and avoids reading the code differently. However, an even more simpler form would be cats():
data temp; x="ab_cd "; y="$"||trim(left(x))||"$"; z="$"||left(trim(x))||"$"; v="$"||strip(x)||"$"; w=cats("$",x,"$"); run;
You should expect different results. The correct version is trim(left(value)). Consider what happens if you try left(trim(value)). First, the TRIM function removes trailing blanks. Then the LEFT function takes the leading blanks and puts them at the end of the string. Better yet, take a look at the STRIP function that removes both leading and trailing blanks.
thanks all.
Actually I got the reason.
if we store the results in a variable a and apply any appending special character causing the same output.
If we assign the values to a variable results to write in data set and filling back the length by 8 characters hence same output.
And if apply appending a special character before storing to any variable (writing back to data set) results the different out put.
For above explanation,
data temp;
x="ab_cd ";
y="$"||trim(left(x))||"$";
z="$"||left(trim(x))||"$";
v="$"||strip(x)||"$";
w=cats("$",x,"$");
put y=;
put z=;
put v;
put w;
run;
y=$ab_cd$
z=$ab_cd $
$ab_cd$
$ab_cd$
Devi...
Do you see that your original question does not represent what you are actually doing?
Hi. Be careful with character variable lengths.
The results of using character functions all have default lengths.
If you run PROC CONTENTS on data set TEMP, you'll see that the variable W created with the CATS has a length of 200 and that none of the other functions (TRIM or STRIP) change the length of the resulting variables V, Y, and Z.
The lengths will still be the length of any variables involved in the concatenation plus the lengths of any character constants. In this example that's 8, not because that's the default lenght of a character variabe, but because it's 6 (length of X) plus 2 (those two $);
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.
Ready to level-up your skills? Choose your own adventure.