nchar()
R编程中的方法用于获取字符串的长度。
用法: nchar(string)
返回:返回字符串的长度。
范例1:
# R program to calculate length of string
# Given String
gfg <- "Geeks For Geeks"
# Using nchar() method
answer <- nchar(gfg)
print(answer)
输出:
[1] 15
范例2:
# R program to calculate length of string
# Given String
gfg <- "The quick brown fox jumps over the lazy dog"
# Using nchar() method
answer <- nchar(gfg)
print(answer)
输出:
[1] 43
相关用法
- R语言 inv()用法及代码示例
- R语言 length()用法及代码示例
- R语言 rainbow()用法及代码示例
- R语言 rep_len()用法及代码示例
- R语言 seq_along()用法及代码示例
- R语言 tolower()用法及代码示例
- R语言 toupper()用法及代码示例
- R语言 agrep()用法及代码示例
- R语言 chartr()用法及代码示例
- 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()用法及代码示例
注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Finding the length of string in R programming – nchar() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。