Hola.
Como dicen
Delphius y
Casimiro, las variables de cadenas o constantes literales se pueden comparar directamente.
Código Delphi
[-]
var
a,b: string;
begin
if a = b then ...
if a > b then ...
if a < 'casa' then ...
if 'perro' <> 'gato' then ...
Saludos.