Registriert seit: 16. Jan 2004
Ort: Bendorf
5.219 Beiträge
Delphi 10.2 Tokyo Professional
|
AW: Textvergleich ähnlich wie bejondcompare?
23. Jan 2018, 13:13
Ich glaube unterm Strich kommt du nicht um sowas drum rum:
Delphi-Quellcode:
for i:= 1 to Min(Length(leftStr), Length(rightStr)) do
begin
if (leftStr[i] <> rightStr[i]) then
charColor := clRed
end;
// Danach beim rightStr alle Zeichen hinter Length(leftStr) rot färben
Michael "Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."
|