Hi,
when I´m trying to post a script here in the forum and put the code with copy&paste in the message body it automaticly changes the part between the quotation marks.
Original (without the space between # and 0):
Value := StringReplace(Value, '&# 039;', '´');
is changed to:
Value := StringReplace(Value, ''', '´');
This is confusing, because when you copy it back or save it, the script has an error because of the missing characters.
see also here:
viewtopic.php?t=3907
I use this line as part of a parser for some old websites, so i need the line exactly as it is and it works well in the script.
Value := StringReplace(Value, '''', '´'); is not doing the same.
I know this is the ASCII Value for single quote, but it should not be evaluated here within the message.
Any ideas?
Not a bug but a question
Code: Select all
Value := StringReplace(Value, ''', '´');
