replacement, x, ignore.case = FALSE, perl = FALSE,
fixed = FALSE, useBytes = FALSE)
其中pattern是要替换的字符...,replacement是替换成的字符,x是对应的string或string vector。...举例如下:
> x <- c("R Tutorial","PHP Tutorial", "HTML Tutorial")
> gsub("Tutorial","Examples",x)
#将Tutorial替换成...Examplers
[1] "R Examples" "PHP Examples" "HTML Examples"
还有其他的一些例子来灵活使用这个函数,结合正则表达式。...now 25 years old, and weights 130lbs"
> y <- gsub("\\d+","---",x)
#\\d表示一个任意的数字,+表示一个以上,所以4322和25都被替换成了