ToUpper - StringUtil

From the CreationKit Wiki
Jump to navigation Jump to search

SKSE Member of: StringUtil Script

This function is not present in SKSE anymore.
Returns the given string as uppercase. (This function requires SKSE)

Syntax[edit | edit source]

String Function ToUpper(string str) native

Parameters[edit | edit source]

  • str: The string to return as uppercase.

Return Value[edit | edit source]

The given string as uppercase.

Examples[edit | edit source]

; "Hello, World!" as uppercase
String stringUC = toUpper("Hello, World!")
debug.notification(stringUC)
; HELLO, WORLD!

Notes[edit | edit source]

None

See Also[edit | edit source]