<< Click to Display Table of Contents >> 返回字符串中指定字符个数(gf_CountInStr函数) |
函数说明
该函数可以将计算一个字符串中包含多少个指定的字符个数。
函数原型
|
Public Function gf_CountInStr(strAllString As String, strSpeString As String) As Integer |
语法
gf_CountInStr(strAllString,strSpeString)
参考:gf_CountInStr("AABCD","A") '返回字符串 AABCD 中,A的个数
参数
参数名 |
必需/可选 |
数据类型 |
参数说明 |
---|---|---|---|
strAllString |
必需 |
String |
要统计的字符串 |
strSpeString |
必需 |
String |
指定的字符串 |
返回值
返回一个整型(Integer)的值。若没有则返回0
示例
|
Sub subTest() Dim intCount As Integer ’定义一个整型变量,保存结果 intCount = gf_CountInStr("ABCDABC","A") '统计字符串"ABCDABC"中包含几个字符"A" Msgbox "ABCDABC 中包含A的个数是 " & intCount '弹窗显示结果 End Sub |