Talk:Left
Revision as of 06:33, 4 April 2009 by Strife Onizuka (talk | contribs)
Contrary to the description, this appears to return the text to the left of the first occurrence of the separator, and the separator itself:
return llDeleteSubString( src, index + llStringLength(divider), -1);
Removing " + llStringLength(divider)" would make this act as described.
This must have been a transposition error using the definition of right, which contains this correct expression:
return llDeleteSubString( src, 0, index + llStringLength(divider) - 1);
Moving the second parameter back one, and putting a "-1" as the second would work, if it were not for the fact we want to exclude the separator.