Sas9 用下划线替换特殊字符
在Sas9中,如何用下划线替换所有、\ /或空格以及我选择的其他特殊字符?数据步骤或宏函数中的解决方案就可以解决问题,我只是在寻找一种方法来做到这一点。
谢谢
In Sas9, how can I replace all the , \ / or spaces, and other special characters of my choosing with underscores? A solution either in a datastep or in macro functions would do the trick, I'm just looking for a method to do it.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 SAS 内置的 Perl 正则表达式功能。
或类似的东西。
You can use the Perl regular expression functionality built into SAS.
or something similar.
翻译功能可能就是您正在寻找的功能,
请确保具有与特殊字符一样多的下划线。另外,因为要翻译空格,所以必须使用修剪函数,否则名称后面会出现一堆下划线。
The translate function might be what you're looking for
Make sure to have as many underscores as you have special characters. Also, because you're translating spaces, you have to use the trim function or else you'll get a bunch of underscores after the name.