Difference between revisions of "LlStringLength"

From Second Life Wiki
Jump to navigation Jump to search
m (<lsl> --> <pre>)
(*To quickly find out the number of bytes (in UTF-8), you can use llStringToBase64 (see also snippet there))
 
(12 intermediate revisions by 8 users not shown)
Line 4: Line 4:
|func_footnote
|func_footnote
|func_desc
|func_desc
|return_text=that is the string length of '''str'''.
|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 indexs start at zero (the index of the first character is zero).
*llStringLength() gets the number of characters, not bytes
**LSL-2 sees all strings as UTF-8
**LSL-Mono sees all string as UTF-16
**Both UTF-8 and UTF-16 use multibyte characters
*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=<pre>
|examples=
default {
<source lang="lsl2">
// assumptions:  
// assumptions:  
//       object name: LSLWiki
//   object name: LSLWiki
//       script name: _lslwiki
//   script name: _lslwiki
      state_entry() {
 
        integer i;
default
{
    state_entry()
    {
         string HowLongAmI = "123";
         string HowLongAmI = "123";
         i = llStringLength(HowLongAmI);
         integer strlen = llStringLength(HowLongAmI);
         llOwnerSay( HowLongAmI + " has " (string) i + " letters.");  
         llOwnerSay( "'" + HowLongAmI + "' has " +(string) strlen + " characters.");
      // The owner of object LSLWiki will hear  
        // The owner of object LSLWiki will hear  
      // LSLWiki: 123 has 3 letters.
        // LSLWiki: '123' has 3 characters.
      }
    }
}
}
</pre>
 
</source>
 
|helpers
|helpers
|also_functions
|also_functions={{LSL DefineRow||[[llGetListLength]]|}}
|also_events
|also_events
|also_tests
|also_tests

Latest revision as of 06:13, 24 January 2024

Summary

Function: integer llStringLength( string str );

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 indexs start at zero (the index of the first character is zero).
  • llStringLength() gets the number of characters, not bytes
    • LSL-2 sees all strings as UTF-8
    • LSL-Mono sees all string as UTF-16
    • Both UTF-8 and UTF-16 use multibyte characters
  • 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)
All Issues ~ Search JIRA for related Bugs

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

Search JIRA for related Issues

Signature

function integer llStringLength( string str );