vote up 0 vote down star

one of my elements from xml is an image and

when i do <xsl:value-of select="MyImage" /> it outputs this as the data

<img alt="" border=0 src="/PublishingImage/myPic.jpg" style="border:0px solid">

using xslt can i extract just the src bit so that i have /PublishingImage/myPic.jpg without the quotes.

flag

57% accept rate

1 Answer

vote up 4 vote down check
<xsl:value-of select="img/@src" />

for a string inside an xml node try this

<xsl:value-of select="substring-before(substring-after(MyImage, 'src=&quot;'), '&quot;')" />

Josh

link|flag
When I do: <xsl:value-of select="MyImage" /> it outputs the above, so how do I do it from there? – raklos Jun 18 at 16:34
1  
can you supply the xml for me to see. is the above data xml or a string in a xml node? – Josh Jun 18 at 16:36
string in an xml node – raklos Jun 18 at 16:37
see updated answer for a string inside an xml node. – Josh Jun 18 at 16:45
i think the quote marks are causing it to break – raklos Jun 18 at 16:56
show 1 more comment

Your Answer

Get an OpenID
or

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