llIntegerToBase64

From Second Life Wiki
Revision as of 11:32, 22 January 2015 by ObviousAltIsObvious Resident (talk | contribs) (<lsl> tag to <source>)
Jump to navigation Jump to search

Summary

Function: string llIntegerToBase64( integer number );

Returns a string that is a Base64 big endian encode of number

• integer number

Examples

string ASCII7ToString(integer letter)
{
    if(letter >= 0x80 || letter < 0) return "";//Not valid ascii7 character
    return llBase64ToString(llIntegerToBase64(letter << 24));
}
If you are looking for full Unicode translation, not just ASCII7 see: Combined_Library

Notes

Only the first 6 of the 8 characters returned are needed to decoded it back into an integer.

See Also

Deep Notes

Search JIRA for related Issues

Signature

function string llIntegerToBase64( integer number );