Icon IsAlpha

Unit: WebCore

Available In: Client and Server Applications

function IsAlpha(const Value: Char): Boolean

The IsAlpha function returns True if the input parameter is an alpha-numeric character:

A..Z a..z

Examples

X := IsAlpha('A');  // X is True
Image