pystr_isupper: Check if a string is uppercase.

Description Usage Arguments Value References See Also Examples

View source: R/pystr_isupper.R

Description

Return TRUE if all cased characters in the string are uppercase and there is at least one cased character, FALSE otherwise.

Usage

1

Arguments

str

A character vector.

Value

A logical vector.

References

https://docs.python.org/3/library/stdtypes.html#str.isupper

See Also

pystr_islower

Examples

1
2
3
pystr_islower("ALL UPPERCASE!")
pystr_islower("All Uppercase?")
pystr_islower("ABC123")

nicolewhite/pystr documentation built on May 23, 2019, 5:09 p.m.