ToUpper - StringUtil

From the CreationKit Wiki
Revision as of 04:24, 20 August 2012 by imported>JohnB
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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

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

See Also