本站提倡有节制游戏,合理安排游戏时间,注意劳逸结合。

【jeecms v5 源码】【个人视频站源码】【措施 指标公式源码】webbrowser html源码

2024-11-30 05:40:02 来源:百科 分类:百科

1.VB如何获取webbrowser源码指定文本

webbrowser html源码

VB如何获取webbrowser源码指定文本

       先引用正则库,源码然后编写如下代码,源码jeecms v5 源码其中html的源码个人视频站源码值替换为你问题中的html源码。

       Private Sub Form_Load()

       Dim html As String

       html = "<li><em>经验值</em></li><li><em>金币数</em></li>"

       ExpeValue = FindFirstGroup("<em>经验值</em>(\d+)</li>",源码措施 指标公式源码 html)

       CoinValue = FindFirstGroup("<em>金币数</em>(\d+)</li>", html)

       MsgBox "经验值为" & ExpeValue

       MsgBox "金币值为" & CoinValue

       End Sub

       Private Function FindFirstGroup(pattern As String, src As String) As String

       Dim re As RegExp

       Set re = New RegExp

       With re

       .pattern = pattern

       Set Matches = .Execute(src)

       If Matches.Count = 0 Then

       FindFirstGroup = ""

       Else

       FindFirstGroup = Matches(0).SubMatches(0)

       End If

       End With

       End Function

相关推荐
一周热点