xsl-list
[Top] [All Lists]

Re: Remove text Up to Full Stop

2005-08-22 02:54:05
Hi David

sorry the ** is actually the master tag - i just used ** cause i have to keep certain things confidential (hope you understand).

I have also noticed the hex - I use oxygen and it seems to put in this hex in the strangest of places. It should read ...extract unavailable.

I really should of checked through what i was posting!

Could you explain more about the recursive template that splits on . Will this remove all text after the first . I really only want to strip after the last as there can be several full stops i each extract.

Hope this makes more sense.

Thanks,
James

From: David Carlisle <davidc(_at_)nag(_dot_)co(_dot_)uk>
Reply-To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] Remove text Up to Full Stop
Date: Mon, 22 Aug 2005 10:11:52 +0100

                <xsl:for-each select="//**">
                    <xsl:apply-templates select="article"/>


That's a syntax error, as an Xpath expression can't end with ** (The
second * is a multiplication operator, and needs a second operand.

You could have

                <xsl:for-each select="//*">
                    <xsl:apply-templates select="article"/>

But that would mean search the entire document and find every element,
and for each elelemt, apply templates to that elements article children.
I doubt you really want that. You didn't show enough of your input
document for me to suggest what you do want here.


also you have

 $extract!='?extract u

The byte before extract is hex 85, which encoding are you using for your
stylesheet?

To remove the space after the last . If you are using xslt2 then you can
apply a simple regex, something like replace(extract,'\.[^\.*]','.')
otherwise in xslt1 you need either an extension function to do teh same,
or a recursive template that splits on . and discards the last section.

(assuming you don't have any elements in the extract element that you
need to preserve)

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>
--~--


_________________________________________________________________
It's fast, it's easy and it's free. Get MSN Messenger 7.0 today! http://messenger.msn.co.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>
--~--



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