sub
R语言中的函数用于替换字符串中模式的第一个匹配项。如果有一个字符串元素向量,那么它将替换所有元素中模式的第一个匹配项。
用法: sub(pattern, replacement, string, ignore.case=TRUE/FALSE)
参数:
pattern:要匹配的字符串
replacement:替换字符串
string:字符串或字符串向量
忽略.case:区分大小写替换的布尔值
范例1:
# R program to illustrate
# the use of sub() function
# Create a string
x <- "Geeksforgeeks"
# Calling sub() function
sub("eek", "ood", x)
# Calling sub() with case-sensitivity
sub("gee", "Boo", x, ignore.case = FALSE)
# Calling sub() with case-insensitivity
sub("gee", "Boo", x, ignore.case = TRUE)
输出:
[1] "Goodsforgeeks" [1] "GeeksforBooks" [1] "Booksforgeeks"
范例2:
# R program to illustrate
# the use of sub() function
# Create a string
x <- c("Geekforgeek", "Geeksforgeeks", "geeksforGeeks")
# Calling sub() function
sub("Gee", "boo", x)
# Calling sub() with case-insensitivity
sub("Gee", "boo", x, ignore.case = TRUE)
输出:
[1] "bookforgeek" "booksforgeeks" "geeksforbooks" [1] "bookforgeek" "booksforgeeks" "booksforGeeks"
相关用法
- R语言 pmatch()用法及代码示例
- R语言 gsub()用法及代码示例
- R语言 replace()用法及代码示例
- R语言 char.expand()用法及代码示例
- R语言 charmatch()用法及代码示例
- R语言 match()用法及代码示例
- R语言 grep()用法及代码示例
- R语言 recode_factor()用法及代码示例
- R语言 grepl()用法及代码示例
- R语言 str_to_title()用法及代码示例
- R语言 which.min()用法及代码示例
- R语言 which.max()用法及代码示例
- R语言 head()用法及代码示例
- R语言 is.primitive()用法及代码示例
- R语言 toupper()用法及代码示例
- R语言 agrep()用法及代码示例
- R语言 chartr()用法及代码示例
- R语言 dQuote()用法及代码示例
- R语言 sQuote()用法及代码示例
- R语言 strtoi()用法及代码示例
- R语言 sprintf()用法及代码示例
- R语言 word()用法及代码示例
- R语言 strrep()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Replace the First Match of a Pattern from a String in R Programming – sub() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。