xpath 节点集中有多少个元素

发布于 2024-12-10 19:09:38 字数 431 浏览 0 评论 0原文

我有这个 matlab 函数:

function trackName = getTrackName(xpath, gpxSourceDom)
    % Import the XPath classes
    import javax.xml.xpath.*

    % Compile the expression
    expression = xpath.compile('gpx/trk/name');

    % Apply the expression to the DOM.
    trackNames = expression.evaluate(gpxSourceDom, XPathConstants.NODESET);
end

我需要一种方法来打印 trackNames NODESET 中的每个元素。我怎样才能做到这一点?

I have this matlab function:

function trackName = getTrackName(xpath, gpxSourceDom)
    % Import the XPath classes
    import javax.xml.xpath.*

    % Compile the expression
    expression = xpath.compile('gpx/trk/name');

    % Apply the expression to the DOM.
    trackNames = expression.evaluate(gpxSourceDom, XPathConstants.NODESET);
end

I need a way to print every element inside trackNames NODESET. How can I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不…忘初心 2024-12-17 19:09:38

快速搜索 MATLAB 和 xpath 返回了以下结果:
在 matlab 中使用 xpath

您缺少的部分是迭代结果并显示名称。有关可以使用节点执行哪些操作的更多想法,请查看 javadoc

对于 i = 1:nodeList.getLength
节点 = nodeList.item(i-1);
disp(char(node.getFirstChild.getNodeValue))
结束

A quick search of MATLAB and xpath returned this result:
using xpath in matlab

The part you're missing is iterating through the results and displaying the name. For more ideas of what you can do with the nodes, check out the javadoc.

for i = 1:nodeList.getLength
node = nodeList.item(i-1);
disp(char(node.getFirstChild.getNodeValue))
end

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文