如何grep在R中有句号的记录

时间:2016-05-01 14:52:43

标签: r

我正在尝试grep数据帧的所有记录,其中包含句号。但它会返回数据框中的所有记录,无论它是否完全停止。

dot=e[grep(".", e$e1),]
View(dot)

有人能帮助我以正确的方式做到这一点吗?

1 个答案:

答案 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),]

第一种选择可能更可取。