三九宝宝网宝宝教育写作范文

从一个字符串中查找子串如果存在则统计子串的个数

01月06日 编辑 39baobao.com

Private Sub Command1_Click()

Dim arr, s As String

s = InputBox("输入字串:", , "you")

If InStr(Text1, s) > 0 Then

arr = Split(Text1, s)

MsgBox s & "共找到:" & UBound(arr)

Else

MsgBox "未找到:" & s

End If

End Sub

Private Sub Form_Load()

Text1 = "I like you do you like me!"

End Sub

推荐阅读
图文推荐