IsAlphaStr Function
Returns True if the string is not empty and is only made of Standard Alphabetic characters 'A'through 'Z' and 'a' through 'z'.

Unit
QESBPCSConvert

Declaration
Function IsAlphaStr(const S: string): Boolean;

Category
Extra String Handling Routines

Implementation

function IsAlphaStr (const S: string): Boolean;
begin
     Result := IsCharSetStr (S, ['A'..'Z', 'a'..'z']);
End;


HTML generated by Time2HELP
http://www.time2help.com