Sv ToUpper

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
< [[::Category:Functions|Category:Functions]]

A function added by the New Vegas Script Extender.

Description

Returns the input string with all letters converted to upper case. Added by NVSE 4.1.

Syntax

[help]
(string) sv_ToUpper Source:string

Example

string_var my_string
string_var my_other_string

let my_string := "What's he building?"

let my_other_string := Sv_ToUpper my_string

; my_other_string == "WHAT'S HE BUILDING?"

See Also