LlStringLength: Difference between revisions

From Second Life Wiki
Jump to navigation Jump to search
m lsl code tagging
Nelson Jenkins (talk | contribs)
Revise incorrect reference to llHTTPResponse being byte-limited (llHTTPResponse has no limit) and clarify section on characters vs. bytes
 
(8 intermediate revisions by 7 users not shown)
Line 4: Line 4:
|func_footnote
|func_footnote
|func_desc
|func_desc
|return_text=that is the number of characters in '''str''' (not counting the null).
|return_text=that is the number of characters in '''str'''.
|spec
|spec
|caveats
|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).
|constants
|constants
|examples=
|examples=
<lsl>
<source lang="lsl2">
// assumptions:  
// assumptions:  
//    object name: LSLWiki
//    object name: LSLWiki
Line 25: Line 31:
     }
     }
}
}
</lsl>
 
</source>
 
|helpers
|helpers
|also_functions={{LSL DefineRow||[[llGetListLength]]|}}
|also_functions={{LSL DefineRow||[[llGetListLength]]|}}

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 );