by Alan <alan@[EMAIL PROTECTED]
>
Dec 10, 2007 at 03:58 AM
Joe wrote:
> Can some one tell me How to compare 2 strings
>
> var
> s1, s2: string
>
> s1:= 'John';
> s2:= 'john';
>
> How could I compare the 2 strings to get a match
if s1 = s2 then
writeln('strings match');
Of course, in your example the test would fail because the case
doesn't match.