StringRight()

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

StringRight()

OutputVar := Mfunc.StringRight(Input, Count)

Mfunc.StringRight(Input, Count)

Retrieves a number of characters from the right-hand side of a string.

Parameters

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

Returns the substring extracted from Input as var containing string.

Remarks

Wrapper for AutoHotkey Docs - StringRight.
Static method.

Example

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.

Related

MfString, MfString.Substring(), MfString.StartsWith(), Mfunc.StringMid(), Mfunc.StringLeft()