LlStringLength - Second Life Wiki

LlStringLength

From Second Life Wiki

Jump to: navigation, search

Function: integer llStringLength( string str );

128 Function ID
0.0 Delay
10.0 Energy

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

• string str

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