Registriert seit: 16. Jan 2004
Ort: Bendorf
5.219 Beiträge
Delphi 10.2 Tokyo Professional
|
Re: * als Platzhalter? String vergleichen
14. Okt 2007, 19:09
Hi,
Ich glaube das was du suchst ist pos
Delphi-Quellcode:
function Vergleich(s1,s2,TeilDerGleichSeinSoll: String): Boolean;
begin
Result := (pos(TeilderGleichSeinSoll,S1) > 0) and (pos(TeilDerGleichSeinSoll,S2) > 0);
end;
So in etwa^^
Gruß
Neutral General
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."
|
|
Zitat
|