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