1. 首页
  2. 编程语言
  3. Delphi
  4. 自动匹配输入字符串

自动匹配输入字符串

上传者: 2018-12-25 12:56:39上传 RAR文件 183.78KB 热度 38次
function TComplexField.GetCount: Integer; var P: PChar; begin Result := 0; if FData '' then begin P := PChar(FData); while P^ #0 do begin while P^ in ComplexSeperators do Inc(P); if P^ in ComplexCharacters then Inc(Result); while P^ in ComplexCharacters do Inc(P); end; end; end;
用户评论