llStringLength

From Second Life Wiki
Revision as of 15:34, 3 August 2007 by Liny Odell (talk | contribs)
Jump to navigation Jump to search

Summary

Function: integer llStringLength( string str );

Returns an integer that is the number of characters in str (not counting the null).

• string str

Examples

default {
// assumptions: 
//        object name: LSLWiki
//        script name: _lslwiki
      state_entry() {
        integer i;
        string HowLongAmI = "123";
        i = llStringLength(HowLongAmI);
        llOwnerSay( HowLongAmI + " has " +(string) i + " characters."); //Edited by Liny Odell because it was missing a + and would have otherwise made a syntax error.
       // 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 );