vote up 2 vote down star
1

I have a list in sharepoint with a hyperlink column.

I'm putting this list into xml and applying xslt to it.

the xml is producing output in the form of:

<link>http://www.foo.com, http://www.foo.com</link>

how can i display this link using xslt?

thanks

flag

57% accept rate

2 Answers

vote up 3 vote down check

How about:

<xsl:template match="link">
  <a href="{substring-before(.,',')}">
    <xsl:value-of select="substring-after(.,',')"/>
  </a>
</xsl:template>
link|flag
vote up 2 vote down

For XSLT 2.0

<xsl:template match="link">
    <xsl:element name="a">
      <xsl:attribute name="href">
         <xsl:value-of select="substring-before(.,',')"/>
      </xsl:attribute>
         <xsl:value-of select="substring-after(.,',')"/>
     </xsl:element>
 </xsl:template>

Although it makes it slightly less readable, the extended syntax is considered good practice when stylesheets become large. Literal Result Elements are not as easy to manipulate via XPath as xsl:element/xsl:attribute

link|flag
Does xslt 2.0 not include the abbreviated syntax? (per my post) – Marc Gravell Feb 27 at 14:31
And should that not be a "match"? (I really haven't looked at 2.0, so I could be very wrong...) – Marc Gravell Feb 27 at 14:33
Yes. I just pressed the post button a little too late. – Jweede Feb 27 at 14:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.