How can I export a character variable WITH trailing spaces and quotes?
eg:
data x;
format x $quote17.;
x='ruby';
put x=;
run;
(log extract)
x="ruby"
What is the most efficient way to get the following result?
x="ruby "
How can I export a character variable WITH trailing spaces and quotes?
eg:
data x;
format x $quote17.;
x='ruby';
put x=;
run;
(log extract)
x="ruby"
What is the most efficient way to get the following result?
x="ruby "