StringLower()

Namespace ›› System ›› Mfunc ›› Methods ››
Parent Previous Next

StringLower()

OutputVar := Mfunc.StringLower(Input [, T])

Mfunc.StringLower(Input [, T])

Converts a string to lowercase.

Parameters

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

Returns the newly converted string of lowercase characters as var containing string.

Remarks

Wrapper for AutoHotkey Docs - StringLower.
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.

Example

InputVar := "THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG"
result := Mfunc.StringLower(InputVar)
MsgBox, %result%. ; Displays: the quick brown fox jumps over the lazy dog

MfsInputvar := new MfString(InputVar)
result := Mfunc.StringLower(MfsInputvar)
MsgBox, %result%. ; Displays: the quick brown fox jumps over the lazy dog

result := Mfunc.StringLower(MfsInputvar, "T")
MsgBox, %result%. ; Displays: The Quick Brown Fox Jumps Over The Lazy Dog

Related

MfString, MfString.ToLower(), MfString.ToUpper(), MfString.ToTitle(), Mfunc.StringUpper()