IsEmptyString {hivPlatform}R Documentation

IsEmptyString

Description

Checks if the passed text is NULL or empty ("") or NA (in that order).

Usage

IsEmptyString(text)

Arguments

text

Text to be tested. Required.

Value

string

Examples

IsEmptyString(NULL)
IsEmptyString("")
IsEmptyString(NA)
IsEmptyString(character())
IsEmptyString(5)
IsEmptyString("5")
IsEmptyString("text")


[Package hivPlatform version 2.0.5 Index]