llStringToBase64

From Second Life Wiki
Revision as of 22:25, 4 February 2014 by Strife Onizuka (talk | contribs)
Jump to navigation Jump to search

Summary

Function: string llStringToBase64( string str );

Returns the string Base64 representation of the str interpreted as an UTF-8 byte sequence

• string str

If extra bits are needed to complete the last base64 symbol, those extra bits will be zero.
To go in the other direction, use llBase64ToString.

Examples

<lsl>integer getStringBytes(string msg) {

   return (llStringLength((string)llParseString2List(llStringToBase64(msg), ["="], [])) * 3) >> 2;
}</lsl>

See Also

Deep Notes

Search JIRA for related Issues

Signature

function string llStringToBase64( string str );