gpt4 book ai didi

vb.net - 拆分文本以获得特定值

转载 作者:行者123 更新时间:2023-12-04 23:42:38 24 4
gpt4 key购买 nike

如何拆分此 xml 节点以仅获取数字值?

<span>All Potatoes: 4</span>

像这样的东西:
Dim code as string = "<span>All Potatoes: 4</span>"
Dim splitrsult as string
Splitresult = splitresult("<span>All Potatoes:" & "</span>")
Msgbox(splitresult)

我是这种语言的新手,如果有帮助,将不胜感激。谢谢!

最佳答案

将 XML 作为 XML 处理! (不是简单的字符串)

使用这个导入语句

Imports System.Xml.Linq

然后解析您的字符串以获取 Xml 元素并获取其值
Dim code As String = "<span>All Potatoes: 4</span>"
Dim node = XElement.Parse(code)
Dim result As String = node.Value ' ==> "All Potatoes: 4"

关于vb.net - 拆分文本以获得特定值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33320457/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com