方法介绍
命令功能: 统计指定字符数量
语法格式:
类_字符串.统计字符数量(str, substr)
参数说明:
str: 字符串, 被统计的字符串
substr: 字符串, 要统计的字符串
返回值: 整数型, 返回要统计的字符串的数量
require "懒人综合插件"
local s="abcdefgahijbkmalgafadfhafha"
while true do
local ret=类_字符串.统计字符数量(s,"a")
print(ret)
print("----------------------------------")
sleep(2000)
end