Difference between revisions of "Right"

From Second Life Wiki
Jump to navigation Jump to search
(/me resolves to proof read better.)
m (added to Category:LSL String)
Line 31: Line 31:
|cat4
|cat4
}}
}}
[[Category:LSL String]]

Revision as of 03:29, 2 May 2011

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>