llStringLength

From Second Life Wiki
Revision as of 17:45, 20 April 2007 by TxMasterG Ping (talk | contribs) (<lsl> --> <pre>)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Summary

Function: integer llStringLength( string str );

Returns an integer that is the string length of str.

• 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 + " letters."); 
       // The owner of object LSLWiki will hear 
       // LSLWiki: 123 has 3 letters.
      }
}

Deep Notes

Search JIRA for related Issues

Signature

function integer llStringLength( string str );