Skip to content

Latest commit

 

History

History
30 lines (16 loc) · 525 Bytes

File metadata and controls

30 lines (16 loc) · 525 Bytes

UpperCaseQ

UpperCaseQ(str)

is True if the given str is a string which only contains upper case characters.

Examples

>> UpperCaseQ("ABCDEFGHIJKLMNOPQRSTUVWXYZ")
True

>> UpperCaseQ("ABCDEFGHIJKLMNopqRSTUVWXYZ")
False

Implementation status

  • ✅ - full supported

Github