怎么统计一个字符串中一个字母出现的次数?vb

2024-11-26 06:31:17
推荐回答(2个)
回答1:

使用split函数,取下标

回答2:

Sub s()
    st = InputBox("input string:")
    ch = InputBox("input character:")
    For i = 1 To Len(st)
        If Mid(st, i, 1) = ch Then n = n + 1
    Next
    MsgBox "there is " & n & " " & ch & " in " & st
End Sub