gsub()
R语言中的函数用于从字符串中替换一个模式的所有匹配项。如果未找到模式,则字符串将按原样返回。
用法:
gsub(pattern, replacement, string, ignore.case=TRUE/FALSE)
参数:
pattern:要匹配的字符串
replacement:替换字符串
string:字符串或字符串向量
忽略.case:区分大小写替换的布尔值
范例1:
# R program to illustrate
# the use of gsub() function
# Create a string
x <- "Geeksforgeeks"
# Calling gsub() function
gsub("eek", "ood", x)
# Calling gsub() with case-sensitivity
gsub("gee", "Boo", x, ignore.case = FALSE)
# Calling gsub() with case-insensitivity
gsub("gee", "Boo", x, ignore.case = TRUE)
输出:
[1] "Goodsforgoods" [1] "GeeksforBooks" [1] "BooksforBooks"
范例2:
# R program to illustrate
# the use of gsub() function
# Create a string
x <- c("R Example", "Java example", "Go-Lang Example")
# Calling gsub() function
gsub("Example", "Tutorial", x)
# Calling gsub() with case-insensitivity
gsub("Example", "Tutorial", x, ignore.case = TRUE)
输出:
[1] "R Tutorial" "Java example" "Go-Lang Tutorial" [1] "R Tutorial" "Java Tutorial" "Go-Lang Tutorial"
相关用法
- R语言 str_detect()用法及代码示例
- R语言 sub()用法及代码示例
- R语言 replace()用法及代码示例
- R语言 grep()用法及代码示例
- R语言 pmatch()用法及代码示例
- R语言 recode_factor()用法及代码示例
- R语言 grepl()用法及代码示例
- R语言 is.primitive()用法及代码示例
- R语言 expand.grid()用法及代码示例
- R语言 combn()用法及代码示例
- R语言 search()用法及代码示例
- R语言 searchpath()用法及代码示例
- R语言 ls()用法及代码示例
- R语言 colors()用法及代码示例
- R语言 toupper()用法及代码示例
- R语言 agrep()用法及代码示例
- R语言 chartr()用法及代码示例
- R语言 dQuote()用法及代码示例
- R语言 sQuote()用法及代码示例
- R语言 strtoi()用法及代码示例
- R语言 sprintf()用法及代码示例
- R语言 word()用法及代码示例
- R语言 strrep()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Replace all the matches of a Pattern from a String in R Programming – gsub() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。