我正在尝试grep数据帧的所有记录,其中包含句号。但它会返回数据框中的所有记录,无论它是否完全停止。
dot=e[grep(".", e$e1),]
View(dot)
有人能帮助我以正确的方式做到这一点吗?
答案 0 :(得分:1)
您可以使用fixed = True参数,也可以使用“\。”
boolean isRunningInEclipe = false;
try {
Workbench.getInstance();
isRunningInEclipe = true;
} catch (NoClassDefFoundError error) {
//not running in Eclipse that would provide the Workbench class
}
或
dot=e[grep(".", e$e1, fixed=T),]
第一种选择可能更可取。