函数参考


StringLen

返回指定字符串的字符总数.

StringLen ( "字符串" )

参数

字符串 要进行计算的字符串.

返回值

返回给定字符串的长度.

注意/说明

数值表达式将被自动转换成字符串并求值.
thesnow注:ANSI中中文字符占用两个字节(识别为两个字),UNICODE中中文字符因编码不同占用4到6个字节(识别为1个字).
目前ANSI版本的AutoIt已经停止开发.

相关

StringInStr, StringLeft, StringLower, StringMid, StringRight, StringTrimLeft, StringTrimRight, StringUpper, StringCompare, StringReplace, StringSplit

示例/演示


Local $len = StringLen("How long am I?")
MsgBox(4096, "字符串长度为:", $len)