R語言中的substring()函數用於提取字符向量中的子串。
用法: substring(text, first, last)
參數:
text:字符向量
first:整數,要替換的第一個元素
last:整數,要替換的最後一個元素
範例1:
# R program to illustrate
# substring function
# Calling substring() function
substring("Geeks", 2, 3)
substring("Geeks", 1, 4)
substring("GFG", 1, 1)
substring("gfg", 3, 3)
輸出:
[1] "ee" [1] "Geek" [1] "G" [1] "g"
範例2:
# R program to illustrate
# substring function
# Initializing a string vector
x <- c("GFG", "gfg", "Geeks")
# Calling substring() function
substring(x, 2, 3)
substring(x, 1, 3)
substring(x, 2, 2)
輸出:
[1] "FG" "fg" "ee" [1] "GFG" "gfg" "Gee" [1] "F" "f" "e"
相關用法
- R語言 as.vector()用法及代碼示例
- R語言 is.vector()用法及代碼示例
- R語言 is.character()用法及代碼示例
- R語言 is.character()用法及代碼示例
- R語言 as.character()用法及代碼示例
- R語言 make.unique()用法及代碼示例
- R語言 charmatch()用法及代碼示例
- R語言 replace()用法及代碼示例
- R語言 str_detect()用法及代碼示例
- R語言 seq()用法及代碼示例
- R語言 as.factor()用法及代碼示例
- R語言 sort()用法及代碼示例
- R語言 range()用法及代碼示例
- R語言 diff()用法及代碼示例
- R語言 median()用法及代碼示例
- R語言 cut()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Extracting Substrings from a Character Vector in R Programming – substring() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。