Difference between revisions of "LlStringLength"

From Second Life Wiki
Jump to navigation Jump to search
(added example)
Line 8: Line 8:
|caveats
|caveats
|constants
|constants
|examples
|examples=<lsl>
default {
// assumptions:
//        object name: LSLWiki
//        script name: _lslwiki
      state_entry() {
        integer i;
        string HowLongAmI = "123";
        i = llStringLength(HowLongAmI);
        llOwnerSay( HowLongAmI + " has " (string) i + " letters.");
      // The owner of object LSLWiki will hear
      // LSLWiki: 123 has 3 letters.
      }
}
</lsl>
|helpers
|helpers
|also_functions
|also_functions

Revision as of 21:31, 11 February 2007

Summary

Function: integer llStringLength( string str );

Returns an integer that is the string length of str.

• string str

Examples

<lsl> default { // assumptions: // object name: LSLWiki // script name: _lslwiki

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

}

</lsl>

Deep Notes

Search JIRA for related Issues

Signature

function integer llStringLength( string str );