ToUpper - StringUtil
Revision as of 04:24, 20 August 2012 by imported>JohnB
SKSE Member of: StringUtil Script
This function is not present in SKSE anymore.
Returns the given string as uppercase. (This function requires SKSE)
Syntax
String Function ToUpper(string str) native
Parameters
- str: The string to return as uppercase.
Return Value
The given string as uppercase.
Examples
; "Hello, World!" as uppercase
String stringUC = toUpper("Hello, World!")
debug.notification(stringUC)
; HELLO, WORLD!
Notes
None