This problem is rather tricky:
MyString:='ab';
But let's say you want a ' between ab:
MyString:='a'b';
It's not going to work since ' interferes with the assignment.
A possible but extremely stupid solution would be to do
ThatAnnoyingSymbol:=GetPage(an url that contains ');
MyString:='a'+ThatAnnoyingSymbol+'b';
Is there any easier method to get around it or must i simply avoid having ' in string? (i'm using it in a Between function btw)








Reply With Quote


