导出带有尾随空格和引号的变量
如何导出带有尾随空格和引号的字符变量?
例如:
data x;
format x $quote17.;
x='ruby';
put x=;
run;
(log extract)
x="ruby"
获得以下结果的最有效方法是什么?
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 "
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
找到了一种方法..
但不确定这是否是最有效的!
found a way..
not sure if this is the most efficient though!