OutputVar := Mfunc.StringRight(Input, Count)
Retrieves a number of characters from the right-hand side of a string.
Input
The name of the variable whose contents will be extracted from.
Can be MfString instance or var containing string.
Count
The number of characters to extract, which can be an expression. If Count is less than or equal to zero, return value will be made null (blank). If Count exceeds the length of Input, return value will be set equal to the entirety of Input.
Can be MfInteger instance or var containing integer.
Returns the substring extracted from Input as var containing string.
Wrapper for AutoHotkey Docs - StringRight.
Static method.
String = This is a test.
OutputVar := Mfunc.StringLeft(String, 4) ; Stores the string "This" in OutputVar.
OutputVar := Mfunc.StringRight(String, 5) ; Stores the string "test." in OutputVar.
MfString, MfString.Substring(), MfString.StartsWith(), Mfunc.StringMid(), Mfunc.StringLeft()