IsUppercase - 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 whether the character is uppercase or not. (This function requires SKSE)

Syntax[edit | edit source]

Bool Function IsUppercase(string c) native

Parameters[edit | edit source]

  • c: The character to check.

Return Value[edit | edit source]

True if the given character is uppercase. False otherwise.

Examples[edit | edit source]

; Checks whether C is uppercase or not.
string test = "C"
if(isuppercase(test))
  debug.notification("Given character is uppercase!")
else
  debug.notification("Given character isn't uppercase!")
endif

Notes[edit | edit source]

None

See Also[edit | edit source]