是否有一个R函数可以在文本文件中搜索s字符串?像unix grep这样的东西?
我想替代方法是逐行读取文件但是想知道是否可以通过这样的函数绕过它?
1)读入并使用R grep
:
# test input cat("a 1\n\b 2\nc 3\n", file = "myfile.dat") grep("a", readLines("myfile.dat"), value = TRUE) ## [1] "a 1"
2)如果你的系统和搜索路径上有grep,另一种可能性是:
shell("grep a myfile.dat") ## a 1
在Windows上,您可以使用或findstr
代替grep
您安装Rtools但不在路径上shell("C:\\Rtools\\bin\\grep a myfile.dat")
.