isUpper

Checks if a string contains only uppercase characters.

  1. bool isUpper(T c)
  2. bool isUpper(string str)
    static pure @nogc
    bool
    isUpper
    (
    string str
    )

Parameters

str string

The string to check.

Return Value

Type: bool

true if the string contains only uppercase characters.

Meta