vote up 4 vote down star
1

I have a string in a node and I'd like to split the string on '?' and return the last item in the array.

For example, in the block below:

<a>
    <xsl:attribute name="href">
    	/newpage.aspx?<xsl:value-of select="someNode"/>
    </xsl:attribute>
    Link text
</a>

I'd like to split the someNode value.

Edit: Here's the VB.Net that I use to load the Xsl for my Asp.Net page:

Dim xslDocPath As String = HttpContext.Current.Server.MapPath("~/App_Data/someXslt.xsl")
Dim myXsltSettings As New XsltSettings()
Dim myXMLResolver As New XmlUrlResolver()

myXsltSettings.EnableScript = True
myXsltSettings.EnableDocumentFunction = True

myXslDoc = New XslCompiledTransform(False)
myXslDoc.Load(xslDocPath, myXsltSettings, myXMLResolver)

Dim myStringBuilder As StringBuilder = New StringBuilder()
Dim myXmlWriter As XmlWriter = Nothing

Dim myXmlWriterSettings As XmlWriterSettings = New XmlWriterSettings()
myXmlWriterSettings.ConformanceLevel = ConformanceLevel.Auto
myXmlWriterSettings.Indent = True
myXmlWriterSettings.OmitXmlDeclaration = True

myXmlWriter = XmlWriter.Create(myStringBuilder, myXmlWriterSettings)

myXslDoc.Transform(xmlDoc, argumentList, myXmlWriter)

Return myStringBuilder.ToString()
flag

Does not really have anything to do with ASP.Net – Ikke Nov 10 at 12:34

6 Answers

vote up 9 vote down check

Use a recursive method:

<xsl:template name="output-tokens">
    <xsl:param name="list" /> 
    <xsl:variable name="newlist" select="concat(normalize-space($list), ' ')" /> 
    <xsl:variable name="first" select="substring-before($newlist, ' ')" /> 
    <xsl:variable name="remaining" select="substring-after($newlist, ' ')" /> 
    <id>
    	<xsl:value-of select="$first" /> 
    </id>
    <xsl:if test="$remaining">
    	<xsl:call-template name="output-tokens">
    		<xsl:with-param name="list" select="$remaining" /> 
    	</xsl:call-template>
    </xsl:if>
</xsl:template>
link|flag
Worked like a charm. Thanks! – Kirk Liemohn Aug 14 at 15:09
vote up 2 vote down

I ended up using the substring-after() function. Here's what worked for me:

<a>
    <xsl:attribute name="href">
    	/newpage.aspx?<xsl:value-of select="substring-after(someNode, '?')"/>
    </xsl:attribute>
    Link text
</a>

Even after setting the version of my XSLT to 2.0, I still got a "'tokenize()' is an unknown XSLT function." error when trying to use tokenize().

link|flag
I wish I had kept the code, but at my previous employer I wrote a xslt 1.0 function to get the n-th token of a string. It's not too difficult once you wrap your head around the concept functional programming – Moe Sep 26 '08 at 18:06
vote up 1 vote down

Yes, use tokenize(string, separator):

tokenize("XPath is fun", "\s+")
Result: ("XPath", "is", "fun")

See the w3schools xpath function reference

[EDIT: Think I misunderstood the question. I thought you wanted to split the actual GET parameters after the ? into an array. For splitting a string at only ONE character, substring-after is your best bet.]

link|flag
The only down-side is that it requires XSLT 2.0 :-( – Greg Beech Sep 25 '08 at 22:22
yeah, i'm getting a "'tokenize()' is an unknown XSLT function." error – travis Sep 25 '08 at 23:16
Which processor are you using? – James Sulak Sep 26 '08 at 15:32
I'm using Asp.Net 2.0, I'll updated the code above... – travis Sep 26 '08 at 17:50
vote up 1 vote down

.NET doesn't support XSLT 2.0, unfortunately. I'm pretty sure that it supports EXSLT, which has a split() function. Microsoft has an older page on its implementation of EXSLT.

link|flag
vote up 0 vote down

XSLT 1.0 doesn't have a split function per se, but you could potentially achieve what you're trying to do with the substring-before and substring-after functions.

Alternatively, if you're using a Microsoft XSLT engine, you could use inline C#.

link|flag
vote up 0 vote down

Just for the record, if you're doing this with 1.0, and you really need a split/tokenise, you need the xslt extensions.

link|flag
interesting, how would i use that in the example above? – travis Sep 26 '08 at 14:00

Your Answer

Get an OpenID
or

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