StrLen
检索字符串中的字符数.
Length := StrLen(String)
参数
- String
-
类型: 字符串
要统计其内容的字符串.
返回值
类型: 整数
函数返回指定字符串的长度.
InStr, SubStr, Trim, StrLower, StrUpper, StrPut, StrGet, StrReplace, StrSplit
示例
获取和报告字符串中包含的字符数量.
StrValue := "The quick brown fox jumps over the lazy dog"
MsgBox "The length of the string is " StrLen(StrValue) ; 结果: 43
unixetc