isAlpha

Checks if a character is alphabetic.

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

Parameters

c T

The character to check.

Return Value

Type: bool

true if the character is alphabetic.

Meta