string llEscapeURL(string url)
Returns the
string that is the URL-escaped version of
url (replacing spaces with %20, etc).
This function returns the UTF-8 encoded escape codes for selected characters.
Only numbers and ASCII letters are not escaped: [^0-9a-zA-Z]
As of 1.9.0(21) this function only returns a string with 254 characters, this is unacceptable. If all your characters need escaping then this will only allow the user to work with 84 bytes.- BW
See
llUnescapeURL.
Functions