嗨,我有以下 xml
<primaryie>
<content-style font-style="bold">VIRRGIN system 7.204, 7.205</content-style>
</primaryie>
通过应用下面的 xslt,我可以选择数字。
<xsl:value-of select="current()/text()"/>
但在以下情况下
<primaryie>
<content-style font-style="bold">VIRRGIN system</content-style>
7.204, 7.205
</primaryie>
如何选择号码?我想要使用 xslt:parent of content style 之类的东西。
我也有一些情况,两个 xmls 都在一起。如果两种情况都存在,请告诉我如何选择号码。
谢谢