以文本方式查看主题

-  中文XML论坛 - 专业的XML技术讨论区  (http://bbs.xml.org.cn/index.asp)
--  『 XSL/XSLT/XSL-FO/CSS 』  (http://bbs.xml.org.cn/list.asp?boardid=8)
----  [求助]这个xml文件如何用xsl转化啊  (http://bbs.xml.org.cn/dispbbs.asp?boardid=8&rootid=&id=50393)


--  作者:jocky_lee
--  发布时间:7/23/2007 4:23:00 PM

--  [求助]这个xml文件如何用xsl转化啊
<TITLE>FURNITURE
<REFERENCE>arrangements of seats for, or adaptation of seats to, vehicles
<SREF TARGET="B60N" LABEL="B60N"/>
</REFERENCE>
; DOMESTIC ARTICLES OR APPLIANCES; COFFEE MILLS; SPICE MILLS; SUCTION CLEANERS IN GENERAL
<REFERENCE>ladders <SREF TARGET="E06C" LABEL="E06C"/>
</REFERENCE>
</TITLE>

这种类型的xml要怎么写xsl转换成
FURNITURE(arrangements of seats for, or adaptation of seats to, vehicles); DOMESTIC ARTICLES OR APPLIANCES; COFFEE MILLS; SPICE MILLS; SUCTION (ladders)


--  作者:luypmp
--  发布时间:7/24/2007 10:15:00 PM

--  
楼主其实可以把上面xml中的text当做<xsl:text>...</xsl:text>来看待:
<?xml version="1.0" encoding="GB2312"?>
<TITLE>
 <xsl:text>FURNITURE</xsl:text>
 <REFERENCE>
  <xsl:text>
   arrangements of seats for, or adaptation of seats to, vehicles
  </xsl:text>
  <SREF TARGET="B60N" LABEL="B60N"/>
 </REFERENCE>
 <xsl:text>
  ; DOMESTIC ARTICLES OR APPLIANCES; COFFEE MILLS; SPICE MILLS; SUCTION CLEANERS IN GENERAL </xsl:text>
 <REFERENCE>
  <xsl:text>ladders</xsl:text>
  <SREF TARGET="E06C" LABEL="E06C"/>
 </REFERENCE>
</TITLE>
这样就好处理了
--  作者:luypmp
--  发布时间:7/24/2007 10:16:00 PM

--  
xsl文件为:
<?xml version='1.0'?>
<xsl:stylesheet version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="text"/>

 <xsl:template match="TITLE">
  <html>
   <head>
   </head>
   <body>
    <table>
     <xsl:apply-templates select="text()|REFERENCE"/>
      </table>
   </body>
  </html>
 </xsl:template>
 <xsl:template match="text()">
  <xsl:value-of select="."/>
 </xsl:template>
 <xsl:template match="REFERENCE">
  (<xsl:value-of select="."/>)
 </xsl:template>
</xsl:stylesheet>


W 3 C h i n a ( since 2003 ) 旗 下 站 点
苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》
50.781ms