From Second Life Wiki
DeleteSubString
llDeleteSubString
Description
Function: string llDeleteSubString( string src, integer start, integer end );
Returns a string that is the result of removing characters from src from start to end.
| • string
| src
|
|
|
|
| • integer
| start
| –
| start index
|
|
| • integer
| end
| –
| end index
|
|
start & end support negative indexes.
It removes both start and end as a matter of course.
Specification
| Index
| Positive
| Negative
|
| First
| 0
| -length
|
| Last
| length - 1
| -1
|
Mentally first translate any negative indexes into positive indexes
- If start <= end then the range operated on starts at start and ends at end. [start, end]
- If start > end then the range operated on starts at 0 and goes to end and then starts again at start and goes to -1. [0, end] + [start, -1]
|
Positive indexes past the length (after the last index), or negative indexes past the beginning (before the first index) are valid. The effects are predictable, the entries are treated as if they were there but were removed just before output.
See negative indexes for more information.