pystr_isupper: Check if a string is uppercase.

Description Usage Arguments Value References See Also Examples

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")

pystr documentation built on April 15, 2017, 12:30 a.m.

Related to pystr_isupper in pystr...