StringTrimLeft()

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

StringTrimLeft()

OutputVar := Mfunc.StringTrimLeft(Input, Count)

Mfunc.StringTrimLeft(Input, Count)

Removes a number of characters from the left-hand side of a string.

Parameters

Input

The name of the variable whose contents will be read from.
Can be instance of MfString or var containing string.

Count

The number of characters to remove, which can be an expression. If Count is less than or equal to zero, return value will be set equal to the entirety of Input. If Count exceeds the length of Input, return value will be made null (blank).
Can be MfInteger instance or var containing integer.

Returns

Returns the shortened version of Input as var containing string.

Remarks

Wrapper for AutoHotkey Docs - StringTrimLeft.
Static method.

Example

String = This is a test.
OutputVar := Mfunc.StringTrimLeft(String, 5)  ; Stores the string "is a test." in OutputVar.
OutputVar := Mfunc.StringTrimRight(String, 6)  ; Stores the string "This is a" in OutputVar.

; ----------------------------------------------
str := new MfString("This is a test.")
intLeft := new MfInteger(5)
OutputVar := Mfunc.StringTrimLeft(str, intLeft)  ; Stores the string "is a test." in OutputVar.
intRight := new MfInteger(6)
OutputVar := Mfunc.StringTrimRight(str, intRight)  ; Stores the string "This is a" in OutputVar.

Related

MfString, MfString.Trim(),  MfString.TrimStart(),  MfString.TrimEnd(), Mfunc.StringTrimRight()