作者:admin 来源: 日期:2020/3/8 13:49:12 人气: 标签:
function IsHexDigit(C: Char): Boolean;begin Result := CharInSet(C, ['A'..'F', 'a'..'f', '0'..'9']);end;