设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

怎样取得一个字符串在另外一个字符串中出现的次数?

1970-1-1 08:00| 发布者: cg1| 查看: 2962| 评论: 0

 

 

 

问题:

怎样取得一个字符串在另外一个字符串中出现的次数? 

 


方法一:

Function strCount(strA As String, strB As String) As Long
    Dim lngA As Long
    Dim lngB As Long
    Dim lngC As Long
    lngA = Len(strA)
    lngB = Len(strB)
    lngC = Len(Replace(strA, strB, ""))
    strCount = (lngA - lngC) / lngB
End Function

 


方法二:

Public Function sCount(String1 As String, String2 As String) As Integer 
    Dim I As Integer, iCount As Integer 
    I = 1 
    Do 
           If (I > Len(String1)) Then Exit Do 
           I = InStr(I, String1, String2, vbTextCompare) 
           If I Then 
              iCount = iCount + 1 
              I = I + 2 
              DoEvents 
           End If 
    Loop While I 
    sCount = iCount 
End Function 

 

 

 
相关文章
     没有手动相关文章
     如何根据字符串表达式,计算出结果?
 
评论
     没有相关评论
     查看或发表更多的评论,请单击这里。
 
 

最新评论

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2025-4-4 05:17 , Processed in 0.065540 second(s), 17 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

返回顶部