Sv Erase
From GECK
A function added by the New Vegas Script Extender.
Contents
Description
Erases the specified number of characters from the specified string starting at the specified position. Omitting the HowMany argument will erase all characters from startPos to the end of the string variable.
Note that this function modifies a string variable in place, and returns nothing.
Syntax
(none) Sv_Erase Source:string_var StartPos:int HowMany:int
Example
string_var my_string let my_string := "He never waves when he goes by" Sv_Erase my_string, 2, 6 ; my_string == "He waves when he goes by" Sv_Erase my_string 8 ; my_string == "He waves"