OutputVar := Mfunc.StringUpper(Input [, T])
Converts a string to uppercase.
Input
The name of the variable whose contents will be read from.
Can be var or any object that inherits from MfObject.
T
If this parameter is the letter T, the string will be converted to title case. For example, "GONE with the WIND" would become "Gone With The Wind".
Can be var containing the value of T or MfString containing the value of T
Returns the newly converted string.
Wrapper for AutoHotkey Docs - StringUpper.
Static method.
To detect whether a character or string is entirely uppercase or lowercase, use "if var is [not] upper/lower".
If Input is an object derived from MfObject. then the the return value will be from the objects ToString() method result.
InputVar := "the quick brown fox jumps over the lazy dog"
result := Mfunc.StringUpper(InputVar)
MsgBox, %result%. ; Displays: THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG
MfsInputvar := new MfString(InputVar)
result := Mfunc.StringUpper(MfsInputvar)
MsgBox, %result%. ; Displays: THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG
result := Mfunc.StringUpper(MfsInputvar, "T")
MsgBox, %result%. ; Displays: The Quick Brown Fox Jumps Over The Lazy Dog
MfString, MfString.ToLower(), MfString.ToUpper(), MfString.ToTitle(), Mfunc.StringLower()