Difference between revisions of "LlStringLength"

From Second Life Wiki
Jump to navigation Jump to search
m (<lsl> --> <pre>)
Line 4: Line 4:
|func_footnote
|func_footnote
|func_desc
|func_desc
|return_text=that is the string length of '''str'''.
|return_text=that is the number of characters in '''str''' (not counting the null).
|spec
|spec
|caveats
|caveats
Line 17: Line 17:
         string HowLongAmI = "123";
         string HowLongAmI = "123";
         i = llStringLength(HowLongAmI);
         i = llStringLength(HowLongAmI);
         llOwnerSay( HowLongAmI + " has " (string) i + " letters.");  
         llOwnerSay( HowLongAmI + " has " (string) i + " characters.");  
       // The owner of object LSLWiki will hear  
       // The owner of object LSLWiki will hear  
       // LSLWiki: 123 has 3 letters.
       // LSLWiki: 123 has 3 characters.
       }
       }
}
}

Revision as of 17:57, 20 April 2007

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

Deep Notes

Search JIRA for related Issues

Signature

function integer llStringLength( string str );