XPATH 中的解析表
<TR>
<TD>Field 1</TD>
<TD colSpan=2>Field 2</TD>
<TD>Field 3</TD>
</TR>
<TR>
<TD>Value for Field1</TD>
<TD colSpan=2>Value for Field2</TD>
<TD>Value for Field3</TD>
<TR></TR>
</TR>
如何将字段与其值映射?我正在使用 XPATH 来解析我的 html 文件。
主要问题是每个输入中的字段数量都会发生变化..但正如您所知,布局将是相同的....
<TR>
<TD>Field 1</TD>
<TD colSpan=2>Field 2</TD>
<TD>Field 3</TD>
</TR>
<TR>
<TD>Value for Field1</TD>
<TD colSpan=2>Value for Field2</TD>
<TD>Value for Field3</TD>
<TR></TR>
</TR>
How can i map the Field with its value? I am using XPATH to parse my html file.
And the main problem is the number of fields change in each and every input..But as you know the layout will be same....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这将选择您的字段名称:
这将选择您的字段值:
This will select you field names:
This will select you field values:
此 XPath 表达式:
选择“值”对应于变量
pName
中指定的“名称”的TD
因此,如果您替换
$pName
在上述带有'Field 2'
的表达式中,将选择以下内容:注意:即使在这种情况下,此 XPath 表达式也会选择正确的节点当两行有不同数量的 TD 时。
要仅选择
TD
的文本子节点,请将/text()
附加到表达式中。要仅获取字符串值,请使用:
这是一个简短的 XSLT 转换,证明已检索到所需的值:
当针对提供的 XML 文档应用此转换时(固定为格式良好):
产生了想要的结果:
This XPath expression:
selects the
TD
with "value" corresponding to the "name" specified in the variablepName
Thus, if you substitute
$pName
in the above expression with'Field 2'
,the following will be selected:Note: This XPath expression selects the correct node even in the case when the two rows have different number of
TD
s.To select only the text child node of the
TD
, append/text()
to the expression.To get just the string value, use:
Here is a short XSLT transformation proving that the wanted value is retrieved:
when this transformation is applied against the provided XML document (fixed to be made well-formed):
the wanted result is produced:
使用此输入:
此 XPath 表达式:
它选择此元素:
注意:这假设有一个“常规”表。
With this input:
This XPath expression:
It selects this element:
Note: This assumes a "regular" table.