ToUpper - StringUtil

Revision as of 09:16, 15 May 2012 by imported>Kahmul (Created page with "Category:Scripting Category:Papyrus Category:SKSE '''SKSE Member of:''' StringUtil Script Returns the given string as uppercase. (This function requires SKSE...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

SKSE Member of: StringUtil Script

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