LlStringLength: Difference between revisions

From Second Life Wiki
Jump to navigation Jump to search
*To quickly find out the number of bytes (in UTF-8), you can use llStringToBase64 (see also snippet there)
Nelson Jenkins (talk | contribs)
Revise incorrect reference to llHTTPResponse being byte-limited (llHTTPResponse has no limit) and clarify section on characters vs. bytes
 
Line 7: Line 7:
|spec
|spec
|caveats=
|caveats=
*The index of the last character is not equal to the string length.
* The index of the last character is not equal to the string length.
**Character indexs start at zero (the index of the first character is zero).
** Character indexes start at zero (the index of the first character is zero).
*llStringLength() gets the number of characters, not bytes
* [[llStringLength]] returns the number of characters - not bytes - in the string.
**LSL-2 sees all strings as UTF-8
** Some functions that accept strings are limited to bytes, not characters.
**LSL-Mono sees all string as UTF-16
** LSL-2 uses UTF-8 strings and Mono uses UTF-16; both support multibyte characters.
**Both UTF-8 and UTF-16 use multibyte characters
** To get the number of bytes in a string instead, use the example snippet on [[llStringToBase64]] (there is no native LSL function to do this).
*Some communication functions (e.g. llHTTPResponse) are limited by number of Bytes, and work with UTF-8 strings
**To quickly find out the number of bytes (in UTF-8), you can use [[llStringToBase64]] (see also snippet there)
|constants
|constants
|examples=
|examples=

Latest revision as of 13:11, 21 August 2025

Summary

Function: integer llStringLength( string str );
0.0 Forced Delay
10.0 Energy

Returns an integer that is the number of characters in str.

• string str

Caveats

  • The index of the last character is not equal to the string length.
    • Character indexes start at zero (the index of the first character is zero).
  • llStringLength returns the number of characters - not bytes - in the string.
    • Some functions that accept strings are limited to bytes, not characters.
    • LSL-2 uses UTF-8 strings and Mono uses UTF-16; both support multibyte characters.
    • To get the number of bytes in a string instead, use the example snippet on llStringToBase64 (there is no native LSL function to do this).

Examples

// assumptions: 
//    object name: LSLWiki
//    script name: _lslwiki

default
{
    state_entry()
    {
        string HowLongAmI = "123";
        integer strlen = llStringLength(HowLongAmI);
        llOwnerSay( "'" + HowLongAmI + "' has " +(string) strlen + " characters.");
        // The owner of object LSLWiki will hear 
        // LSLWiki: '123' has 3 characters.
    }
}

See Also

Functions

•  llGetListLength

Deep Notes

Signature

function integer llStringLength( string str );