返回字符串左起指定数量的字符.
StringLeft ( "字符串", 数量 )
Local $result = StringLeft("I am a string", 3) MsgBox(0, "左起3个字符是:", $result)