作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试解析 q 中的 XML 文件。我能够展平文件,但我无法进一步提取结果。以下是数据集。
<breakfast_menu>
<food>
<name>Belgian Waffles</name>
<price>$5.95</price>
<description>
Two of our famous Belgian Waffles with plenty of real maple syrup
</description>
<calories>650</calories>
</food>
<food>
<name>Strawberry Belgian Waffles</name>
<price>$7.95</price>
<description>
Light Belgian waffles covered with strawberries and whipped cream
</description>
<calories>900</calories>
</food>
</breakfast_menu> ```
Below is the code i have tried so far.
file: read0 `$"File.xml"
file1: raze file
file2: enlist file2
无法进一步分析记录。任何建议都会有所帮助。
最佳答案
我写了一个小实用程序 qxml之前使用 embedPy将 XML 数据提取到 kdb+ 进程中。
q)\l qxml.q
q)menu:.qxml.read[`:menu.xml]
q)menu[`breakfast_menu;`food]
name price description ..
-----------------------------------------------------------------------------..
"Belgian Waffles" "$5.95" "Two of our famous Belgian Waffles with ..
"Strawberry Belgian Waffles" "$7.95" "Light Belgian waffles covered with stra..
其他选项可能是:
关于kdb - 在 q 中解析 XML (KX),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69944905/
我是 KDB 的新手(抱歉,如果这个问题很愚蠢)。我正在创建下表 q)dsPricing:([id:`int$(); date:`date$()] open:`float$();close:`floa
我正在尝试解析 q 中的 XML 文件。我能够展平文件,但我无法进一步提取结果。以下是数据集。 Belgian Waffles $5.95 Two of our f
我正在尝试解析 q 中的 XML 文件。我能够展平文件,但我无法进一步提取结果。以下是数据集。 Belgian Waffles $5.95 Two of our f
有没有一种巧妙的方法使用VBA或公式在kx+m字符串中查找“k”和“m”变量? kx+m 字符串的外观有多种情况,例如: 312*x+12 12+x*2 -4-x 等等。我很确定我可以通过在 Exce
我是一名优秀的程序员,十分优秀!