R 語言中的 chartr() 函數用於進行字符串替換。它用指定為參數的新字符替換字符串中現有字符的所有匹配項。
用法: chartr(old, new, x)
參數:
old:要替換的舊字符串
new:新字符串
x:目標字符串
範例1:
# R program to illustrate
# chartr function
# Initializing a string
x <- "Geeks GFG"
# Calling the chartr() function
# which will substitute G with Z
# to the above specified string
chartr("G", "Z", x)
輸出:
[1] "Zeeks ZFZ"
範例2:
# R program to illustrate
# chartr function
# Initializing a string
x <- "GeeksforGeeks Geeks"
# Calling the chartr() function
# which will substitute G with 1,
# k with 2 and s with 3
# to the above specified string
chartr("Gks", "123", x)
輸出:
[1] "1ee23for1ee23 1ee23"
相關用法
- R語言 is.primitive()用法及代碼示例
- R語言 toupper()用法及代碼示例
- R語言 agrep()用法及代碼示例
- R語言 dQuote()用法及代碼示例
- R語言 sQuote()用法及代碼示例
- R語言 strtoi()用法及代碼示例
- R語言 sprintf()用法及代碼示例
- R語言 grep()用法及代碼示例
- R語言 word()用法及代碼示例
- R語言 strrep()用法及代碼示例
- R語言 str_detect()用法及代碼示例
- R語言 gsub()用法及代碼示例
- R語言 sub()用法及代碼示例
- R語言 strtrim()用法及代碼示例
- R語言 pmatch()用法及代碼示例
- R語言 strftime()用法及代碼示例
- R語言 as.Date()用法及代碼示例
- R語言 toString()用法及代碼示例
- R語言 parse()用法及代碼示例
- R語言 deparse()用法及代碼示例
- R語言 dunif()用法及代碼示例
- R語言 lapply()用法及代碼示例
- R語言 optimize()用法及代碼示例
- R語言 lgamma()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Substitute characters of a String in R Programming – chartr() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。