当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 sub()用法及代码示例


subR语言中的函数用于替换字符串中模式的第一个匹配项。如果有一个字符串元素向量,那么它将替换所有元素中模式的第一个匹配项。

用法: 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"

相关用法


注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Replace the First Match of a Pattern from a String in R Programming – sub() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。