Difference between revisions of "Right"

From Second Life Wiki
Jump to navigation Jump to search
m (woops ^^;)
(/me resolves to proof read better.)
Line 24: Line 24:
|also_tests
|also_tests
|also_articles
|also_articles
|location=
|location
Posted here with the kind permission of {{User|Very Keynes}}. Originally posted February 2008 at http://forums.secondlife.com/showthread.php?t=243445 .
|notes
|notes
|cat1=Examples
|cat1=Examples

Revision as of 18:51, 14 July 2008

Summary

Function: string right( string src, string divider );

Returns text right of a specified separator
Returns a string that is the text in src that is right of the first occurrence of divider.

• string src
• string divider

If divider is not found then src is returned in it's entirety.

See also: Left

Specification

<lsl>string right(string src, string divider) {

   integer index = llSubStringIndex( src, divider );
   if(~index)
       return llDeleteSubString( src, 0, index + llStringLength(divider) - 1);
   return src;

}</lsl>

Examples

<lsl>string value = right("Colour=Brown", "="); //value == "Brown"</lsl>