在 R 中如何判断字符串是否包含转义序列?
我在 R 中有一个字符串,例如 x <- "c:\tmp\rest.zip"。我怎样才能检测到它里面有转义序列呢? \t 和 \r?我们 DOS/Windows 人员有使用 R 不喜欢的反斜杠的习惯,我正在编写一个函数,我希望能够保护用户免受自身侵害。
谢谢。
I have a string in R, e.g. x <- "c:\tmp\rest.zip". How can I detect that it has escape sequences in it, vis. \t and \r? Us DOS/Windows guys have a habit of using backslashes that R doesn't like and I'm writing a function where I would like to be able to protect the user from themselves.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
grep 模式中双反斜杠是成功之路:
搜索控制字符的另一种方法:
Doubling of the back-slashes in the grep pattern is the path to success:
Another way to be to search for control characters: