Trims a number of characters from the left hand side of a string.
StringTrimLeft ( "string", count )
If count is out-of-bounds, an empty string is returned.
StringTrimLeft($str, $n) is functionally equivalent to StringRight($str, StringLen($str) - $n)
StringCompare, StringInStr, StringLeft, StringLen, StringLower, StringMid, StringReplace, StringRight, StringSplit, StringTrimRight, StringUpper
#include <MsgBoxConstants.au3>
Local $sString= StringTrimLeft ("This is a sentence with whitespace.",5); Remove the 5 leftmost characters from the string.
MsgBox ($MB_SYSTEMMODAL,"",$sString)