Buscar

Comparando strings e retornando o percentual de igualdade

Código

Uses
  Math;

function DoStringMatch(s1, s2: string): Double;
var
  i, iMin, iMax, iSameCount: Integer;
begin
  iMax := Max(Length(s1), Length(s2));
  iMin := Min(Length(s1), Length(s2));
  iSameCount := -1;
  for i := 0 to iMax do
  begin
    if i > iMin then
      break;
    if s1[i] = s2[i] then
      Inc(iSameCount)
    else
      break;
  end;
  if iSameCount > 0 then
    Result := (iSameCount / iMax) * 100
  else
    Result := 0.00;
end;

procedure TForm1.Button1Click(Sender: TObject);
var
  match: Double;
begin
  match := DoStringMatch('SwissDelphiCenter', 'SwissDelphiCenter.ch');
  ShowMessage(FloatToStr(match) + ' % match.');
  // Resultado: 85%
  // Resultado: 85%
end;
 

Publicidade

Vote na dica




Quantidade de votos: 0 votos
Aceitação: 0%


Detalhes da dica

Categoria: Object pascal
Adicionada dia: 16/05/05
Por: Vincent Vega
Visualizada: 4875 vezes

Planeta Delphi - Tudo sobre programação Delphi Planeta Delphi - www.planetadelphi.com.br - Todos os direitos reservados | Copyright 2001-2009