在 R 编程中检查向量的元素是否为非空字符串 – nzchar()函数
R 语言中的nzchar()
函数用于测试字符向量的元素是否为非空字符串。
Syntax: nzchar(x)
Parameters:
x: character vector
示例 1:
# R program to illustrate
# nzchar function
# Initializing a character vector
x <- c("GFG", "gfg")
y <- c("a", "b", "c")
# Calling the nzchar() function
nzchar(x)
nzchar(y)
输出 :
[1] TRUE TRUE
[1] TRUE TRUE TRUE
示例 2:
# R program to illustrate
# nzchar function
# Initializing a character vector
x <- c("")
y <- c("", "")
# Calling the nzchar() function
nzchar(x)
nzchar(y)
输出:
[1] FALSE
[1] FALSE FALSE