Sv PadEnd
From GECK
A function added by the AnhNVSE Plugin.
Description
Pads the current string with another string (multiple times, if needed) until the resulting string reaches the given length. The padding is applied from the end of the current string.
Syntax
(string) Sv_PadEnd srcString:string targetLength:int padString:string
Example
string_var myString myString = Sv_PadEnd "Hello" 10 "!" ; myString = "Hello!!!!!"
string_var myString myString = Sv_PadEnd "Hello" 10 "foo" ; myString = "Hellofoofo"