Sv ToLower
Revision as of 15:16, 21 August 2014 by imported>Odessa (created. source testing in geck)
< [[::Category:Functions|Category:Functions]]
A function added by the New Vegas Script Extender.
Description
Returns the input string with all letters converted to lower case. Added by NVSE 4.1.
Syntax
(string) sv_ToLower Source:string
Example
string_var my_string string_var my_other_string let my_string := "Hello There" let my_other_string := Sv_ToLower my_string ; my_other_string == "hello there"