isString {rPraat} | R Documentation |
Returns TRUE
/ FALSE
whether it is exactly 1 character string (character vector of length 1, non-missing)
isString(string)
string |
variable to be tested |
TRUE
/ FALSE
isString("hello")
isString(2)
isString(c("hello", "world"))
isString(NA_character_)