我想写出 4 个问题是否存在。到目前为止,我的方法是 select="//NTE_NotesAndCommentsSegment_2/NTE_3_Comment" 检索所有 3 条评论。但我遇到了麻烦
选择
NTE_3_Comment
它包含“问题 1”(字符串值)的位置当问题不存在时,写出问题 4 。
我还需要输出正确的数字
SETID
。
注意:问题中实际上没有数字。我正在使用 ID 对输出进行排序。
输入 XML:
<NTE_NotesAndCommentsSegment_2>
<NTE_1_SetIdNotesAndComments>1</NTE_1_SetIdNotesAndComments>
<NTE_2_SourceOfComment></NTE_2_SourceOfComment>
<NTE_3_Comment>Question 1 ? Answer 1</NTE_3_Comment>
</NTE_NotesAndCommentsSegment_2>
<NTE_NotesAndCommentsSegment_2>
<NTE_1_SetIdNotesAndComments>1</NTE_1_SetIdNotesAndComments>
<NTE_2_SourceOfComment></NTE_2_SourceOfComment>
<NTE_3_Comment>Question 2 ? Answer 2</NTE_3_Comment>
</NTE_NotesAndCommentsSegment_2>
<NTE_NotesAndCommentsSegment_2>
<NTE_1_SetIdNotesAndComments>1</NTE_1_SetIdNotesAndComments>
<NTE_2_SourceOfComment></NTE_2_SourceOfComment>
<NTE_3_Comment>Question 3? Answer 3</NTE_3_Comment>
</NTE_NotesAndCommentsSegment_2>
预期输出 XML:
<NTE_NotesAndCommentsSegment_2>
<NTE_1_SetIdNotesAndComments>1</NTE_1_SetIdNotesAndComments>
<NTE_2_SourceOfComment></NTE_2_SourceOfComment>
<NTE_3_Comment>Question 1 ? Answer 1</NTE_3_Comment>
</NTE_NotesAndCommentsSegment_2>
<NTE_NotesAndCommentsSegment_2>
<NTE_1_SetIdNotesAndComments>2</NTE_1_SetIdNotesAndComments>
<NTE_2_SourceOfComment></NTE_2_SourceOfComment>
<NTE_3_Comment>Question 2 ? Answer 2</NTE_3_Comment>
</NTE_NotesAndCommentsSegment_2>
<NTE_NotesAndCommentsSegment_2>
<NTE_1_SetIdNotesAndComments>3</NTE_1_SetIdNotesAndComments>
<NTE_2_SourceOfComment></NTE_2_SourceOfComment>
<NTE_3_Comment>Question 3 ? Answer 3</NTE_3_Comment>
</NTE_NotesAndCommentsSegment_2>
<NTE_NotesAndCommentsSegment_2>
<NTE_1_SetIdNotesAndComments>4</NTE_1_SetIdNotesAndComments>
<NTE_2_SourceOfComment></NTE_2_SourceOfComment>
<NTE_3_Comment>Question 4 ? *Blank* </NTE_3_Comment>
</NTE_NotesAndCommentsSegment_2>
我正在寻找可以帮助我改变解决方案方法的建议。提前致谢。
解决方案:感谢@ORMapper 的建议。无论问题是否存在,每次都会写出所有四个问题。如果源中不存在问题,答案将显示为空白。
<NTE_NotesAndCommentsSegment_2>
<NTE_1_SetIdNotesAndComments>1</NTE_1_SetIdNotesAndComments>
<NTE_3_Comment>Question 1 ?<xsl:value-of select="substring-after(//NTE_NotesAndCommentsSegment_2/NTE_3_Comment[starts-with(text(),'Question 1')],'?')"/>
</NTE_3_Comment>
</NTE_NotesAndCommentsSegment_2>
<NTE_NotesAndCommentsSegment_2>
<NTE_1_SetIdNotesAndComments>2</NTE_1_SetIdNotesAndComments>
<NTE_3_Comment>Question 2 ?<xsl:value-of select="substring-after(//NTE_NotesAndCommentsSegment_2/NTE_3_Comment[starts-with(text(),'Question 2')],'?')"/>
</NTE_3_Comment>
</NTE_NotesAndCommentsSegment_2>
<NTE_NotesAndCommentsSegment_2>
<NTE_1_SetIdNotesAndComments>3</NTE_1_SetIdNotesAndComments>
<NTE_3_Comment>Question 3 ?<xsl:value-of select="substring-after(//NTE_NotesAndCommentsSegment_2/NTE_3_Comment[starts-with(text(),'Question 3')],'?')"/>
</NTE_3_Comment>
</NTE_NotesAndCommentsSegment_2>
<NTE_NotesAndCommentsSegment_2>
<NTE_1_SetIdNotesAndComments>4</NTE_1_SetIdNotesAndComments>
<NTE_3_Comment>Question 4 ? <xsl:value-of select="substring-after(//NTE_NotesAndCommentsSegment_2/NTE_3_Comment[starts-with(text(),'Question 4')],'?')"/>
</NTE_3_Comment>
</NTE_NotesAndCommentsSegment_2>