LlDeleteSubString
From Second Life Wiki
| LSL Portal | | | Functions | | | Events | | | Types | | | Operators | | | Constants | | | Flow Control | | | Script Library | | | Tutorials |
Description
Function: string llDeleteSubString( string src, integer start, integer end );| 95 | Function ID |
| 0.0 | Delay |
| 10.0 | Energy |
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.
Characters at positions start and end are removed.
Specification
| Index | Positive | Negative |
|---|---|---|
| First | 0 | -length |
| Last | length - 1 | -1 |
Mentally first translate any negative indexes into positive indexes
|
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.
Examples
default { state_entry() { string ex = "abcdefghi"; llDeleteSubString(ex, 4, 7); //Incorrect! } }
default { state_entry() { string ex = "abcdefghi"; ex = llDeleteSubString(ex, 4, 7); //Correct llSay(0, ex); //Would say "abcdi" } }
//-- special case default { state_entry() { string ex = "abcdefghi"; llSay( 0, llDeleteSubString(ex, 4, 7) ); //Would say "abcdi" //-- acceptable if you do NOT want to change the contents of 'ex', only the output } }
Notes
Indexes start at zero, the index of the first character is zero. Using 0,0 as start and end positions would delete the first character only. Negative indexes count from the far end of the string towards the beginning, so -1 is short form for the last character in a string. Positive and negative indexes can be mixed so using 0, -1 as start and end positions would delete the entire string.
To ascertain how long a string is, use llStringLength.
Granted, wondering how to use this can be bewildering at times: with random text strings being handled by your script, you may wonder how you can know what positions you should be starting and ending the deletion at. llSubStringIndex is the preferred method of finding a string in a string but it can be a rather involved process. If the user just wants to remove all occurrences of a string from a string they may wish to consider simply using Strife Onizuka's str_replace
See Also
Functions
| • | llGetSubString | |||
| • | llInsertString | |||
| • | llDeleteSubList |
Articles
| • | Negative Index | |||
| • | CombinedLibrary: str_replace |

