Difference between revisions of "ToUpper - StringUtil"
Jump to navigation
Jump to search
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...") |
imported>JohnB |
||
Line 1: | Line 1: | ||
'''SKSE Member of:''' [[StringUtil Script]] | '''SKSE Member of:''' [[StringUtil Script]] | ||
This function is not present in SKSE anymore. <br/> | |||
Returns the given string as uppercase. (This function requires SKSE) | Returns the given string as uppercase. (This function requires SKSE) | ||
Latest revision as of 04:24, 20 August 2012
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