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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。