如何在R中替换符号'phi'?

时间:2014-03-11 03:04:12

标签: r symbols

我正在使用

record$Name <- gsub(pattern="phi",replacement="",x=record$Name)

上面的内容甚至取代了'Graphics'中的'phi',在R中执行此操作的方法是什么?

1 个答案:

答案 0 :(得分:0)

尝试使用gsub(pattern="^phi$",replacement="",x=record$Name)

示例,请考虑以下字符串向量:

> string <- c("phi", "graphics", "Graphics")
> gsub("^phi$", "", string)
[1] ""         "graphics" "Graphics"