我想使用正则表达式:
Dim today As New System.Text.RegularExpressions.Regex("today_count"">$(\d+\.\d+)")
我的输入包含以下文字:
<span class="balanceAmount" id="today_live">$0.42</span> </a>
它没有给我什么。我也试过这样的事情:
Dim today As New System.Text.RegularExpressions.Regex("today_count"">$(.+)<")
或
Dim today As New System.Text.RegularExpressions.Regex("today_count"">$(*+)<")
仍然没有。你能帮助我吗?
答案 0 :(得分:0)