I am getting an error "FATAL ERROR: The context item for an axis step is
not a node"
That error message seems faily clear:
<xsl:variable name="split"
select="tokenize(replace($AName,'(.)([A-Z])','$1 $2'), ' ')"/>
That produces a sequence of strings
<xsl:for-each select="$split">
That iterates over the sequence, making the current item each string in
turn.
<xsl:if
test="TopConcept/
that is an error as the current item is a string not a node so you can't
try to find the TopConcept child of the current item.
You need
<xsl:if
test="$something/TopConcept/
where the variable something is a saved node from outside the
xsl:for-each.
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________
--~------------------------------------------------------------------
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>
--~--