JCL Help:CharIsAlpha@AnsiChar

From Project JEDI Wiki
Jump to navigationJump to search


Summary

Tests whether C is an alpha character.


Pascal

 function CharIsAlpha(const C: Char): Boolean;
function CharIsAlpha(const C: AnsiChar): Boolean;


Parameters

Parameters Description
const C: Char The character to test


Return Value

If C is an alpha character the return value is True, otherwise the return value is False.


Description

CharIsAlpha returns whether or not the supplied character is an alpha character. That is, if C comes from the ['a'..'z', 'A'..'Z'] set.


See Also

CharIsDigit CharIsNumberChar CharIsAlphaNum


About

Unit

JclAnsiStrings


Donator

Marcel van Brakel


Contribute to this help topic

This documentation wiki is based on the collaborative effort of Project JEDI users. Your edits are welcome in order to improve documentation quality: edit this page