Skip to contents

Returns TRUE if text is all uppercase.

Usage

IS_YELLING(x)

Arguments

x

A character vector.

Value

A logical vector.

Examples

IS_YELLING("HELLO")
#> [1] TRUE
IS_YELLING("hello")
#> [1] FALSE
IS_YELLING("Hello")
#> [1] FALSE