xsl-list
[Top] [All Lists]

Re: in this xsl , why dont get result with substring-before ..

2005-03-25 06:44:56
----- Original Message ----- From: "henry human" <henry_human(_at_)yahoo(_dot_)de>
To: <xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>
Sent: Friday, March 25, 2005 1:37 PM
Subject: [xsl] in this xsl , why dont get result with substring-before ..


Problem number 1)i have this two files. when i try to
get with substring-before or substring-after i get no
data

You have qotes around bbb which means you are looking for the string "RRR" inside "bbb" rather than the valu of the element bbb.

Problem number 2)
why i get in this for-each loop only one
time the content of workstep1 node

I don't follow, there is only one Jobsdetails and only one worksPart1 and no workstep1, what do you mean?

Problem number 3)
what is the other alternativity to call a template
in this loop instead of to use xsl:apply-templates ?
thanks

Again the holiday mood has taken over, Can you clarify what you want to achieve?


<?xml version='1.0'?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
<xsl:output method="html"/>
<xsl:template match="/Job">
<html><head><META http-equiv="Content-Type"
content="text/html; charset=iso-8859-1"/>

</head><body>

<table>
<tr>
  <td></td>    <td> <b>JOB Desc. </b></td></tr>

<xsl:for-each select="Jobsdetails">
<tr>
  <td></td>
      <td>  <xsl:value-of
select="jobDescription"/></td>

</tr>

<xsl:apply-templates select="worksPart1"/>
</xsl:for-each>
</table></body></html>

</xsl:template>


<xsl:template match="worksPart1" >
<tr> <td></td>
  <td>
   <xsl:if test="contains(bbb,'RRR')">
   <xsl:value-of
select="substring-before('bbb','RRR')"/>
   +<xsl:value-of
select="substring-after('bbb','RRR')"/>
   </xsl:if>
      </td>

</tr>

</xsl:template>
</xsl:stylesheet>


------------------------------------------
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="test.xsl"?>
<Job>


<Jobsdetails>
<jobDescription>mydescription</jobDescription>
<worksPart1>

<bbb>beforeRRRafter</bbb>
<worksNr>20362</worksNr>

</worksPart1>
</Jobsdetails>
</Job>



Joe
--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>