Difference between revisions of "LlStringLength"

From Second Life Wiki
Jump to navigation Jump to search
m (cleaning up the style and optimizing just a bit, the C style of variable declaration is a bad practice in LSL.)
m (lsl code tagging)
Line 8: Line 8:
|caveats
|caveats
|constants
|constants
|examples=<pre>
|examples=
<lsl>
// assumptions:  
// assumptions:  
//    object name: LSLWiki
//    object name: LSLWiki
Line 24: Line 25:
     }
     }
}
}
</pre>
</lsl>
|helpers
|helpers
|also_functions={{LSL DefineRow||[[llGetListLength]]|}}
|also_functions={{LSL DefineRow||[[llGetListLength]]|}}

Revision as of 14:56, 30 March 2008

Summary

Function: integer llStringLength( string str );

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

• string str

Examples

<lsl> // 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.
   }

}

</lsl>

See Also

Functions

•  llGetListLength

Deep Notes

Search JIRA for related Issues

Signature

function integer llStringLength( string str );