function IntToStr(Value: Integer): string;overload;
function IntToHex(Value: Integer; Digits: Integer): string; overload;
function StrToInt(const S: string): Integer;
function TryStrToInt(const S: string; out Value: Integer): Boolean;
function StrToInt64(const S: string): Int64;
function TryStrToBool(const S: string; out Value: Boolean): Boolean;
function LoadStr(Ident: Integer): string; //返回根据标识Ident的字符串资源
function StrLen(const Str: PChar): Cardinal;
function StrEnd(const Str: PChar): PChar;
DateToStr(const DateTime: TDateTime): string;
function StrToDate(const S: string): TDateTime;
function AnsiContainsText(const AText, ASubText: string): Boolean;//返回字符串AText是否包含子串ASubText