您好,我正在嘗試獲取處理指令中的僞屬性的值,並將該僞屬性的值放入該處理的每個實例的鍵值中指令。使用使用屬性中的處理指令的字符串值<xsl:key>
這樣的處理指令的例子看起來像這樣的XML內容:
<?uspc-assoc-workflow sws='C139995_131101' forum='2014/12' target='9S1' type='PCA'?>
我的模板的下面是一個例子。我只看到了使用實際屬性的模板實例,但由於這是一個處理指令,因此我不能簡單地使用@sws作爲值,所以我嘗試使用以下命令來捕獲字符串中僞屬性的值:
<xsl:key name="uspcassocworkflow" match="processing-instruction('uspc-assoc-workflow')" use="substring-before(substring-after(., 'sws="'), '"')"/>
此編程是否有效?
我有第二組處理指令的所謂USPC-最終添加這個樣子:
<?uspc-end-add id='f104450-r0001' sws='C139995_131101' symbols='yes'?>
和模板來匹配它看起來像這樣:
<xsl:template match="processing-instruction('uspc-end-add')" name="end_add">
<!-- Need to be able to get the key values of the uspc-assoc-workflow sws psudo attribute here below -->
<xsl:for-each select="key('uspcassocworkflow', '@sws')">
<!-- Then here I need to be able test if the variable value endswsnumber matches one of uspassocworkflow processing instructions key value -->
</xsl:for-each>
<xsl:variable name="id"><xsl:value-of select="substring-before(substring-after(., 'id="'), '"')"/></xsl:variable>
<xsl:variable name="endswsnumber"><xsl:value-of select="substring-before(substring-after(., 'sws="'), '"')"/></xsl:variable>
<xsl:variable name="symbol"><xsl:value-of select="substring-before(substring-after(., 'symbol="'), '"')"/></xsl:variable>
因此以上我正在嘗試將這些關鍵值引入此模板,然後我想測試變量endswsnumber是否與uspc-assoc-workflow PI的其中一個關鍵值相匹配。如果他們是匹配的,並且一旦我有相應的uspc-assoc-workflow PI。我將測試相應的uspc-assoc-workflow psudo屬性的值是否爲「目標」,併爲每個目標值輸出不同的跨度。因此,如果相應的uspc-assoc-workflow的目標值是'9S1',如上例所示,如果值爲'9S2',我將輸出一個跨度html,並在html中輸出不同的跨度。 「目標」psudo屬性只有幾個不同的值,所以我對每個屬性都進行測試。
謝謝。
你不能用'@sws 「無論如何!你必須認爲它是一個字符串。此外,單引號用'''表示,而不是用'"'(用於雙引號)。您是否可以通過完整的XSLT將您的問題最小化爲只有一個期望的輸出,並且我們可以對其進行更新以實現輸出。 –
我可以使用和後匹配值'sws ='並在關閉「'」之前將其添加到uspc-end-add PI中相同的對應值,而不事先知道實際字符串的值? –
LearningandBurning