Hello! I've ran into a rather small problem that I can't solve. I get an error when I try to see if my string = to ' '?
At first I had:
------------
tmpPos : string;
tmpSize : string;
..
if (tmpPos = ' ' or tmpSize = ' ' ) then
..
..
end;
-----------
however, the above doesn't work.. I get the error
------
Operator not applicable to this operand type.
------
Any ideas what I must do to see if my string equals ' '?? Any help would be appreciated
At first I had:
------------
tmpPos : string;
tmpSize : string;
..
if (tmpPos = ' ' or tmpSize = ' ' ) then
..
..
end;
-----------
however, the above doesn't work.. I get the error
------
Operator not applicable to this operand type.
------
Any ideas what I must do to see if my string equals ' '?? Any help would be appreciated