[OFF TOPIC]
quote:
Originally posted by Plan-1130
indeed, and don't split up messages by every "'\" it finds, but find out first if a double "\\" is found (like in most languages also) so you can use "\\" if you don't want the "\" to split up the messages
that's actually a long way around and the logic behind it can be made extemely shorter. You don't need to look for double slashes "\\" and then for single slashes at all.
All you need to do is look for a single slash "\" and treat every character (or tag in this case) after it literally. In other words a double slash autoamtcially already produce a single slash.
[/OFF TOPIC]