isAlpha

Checks if a string contains only alphabetic characters.

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

Parameters

str string

The string to check.

Return Value

Type: bool

true if the string contains only alphabetic characters.

Meta