This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: RE: Search Engine


There may or may not be nesting. What I'm looking for is some coding that
will work for searches carried out on any file, whatever the child node
structure of <elemB> is - so, for example, it would have to work for both of
the files below:

File 1
<elemA>
    <elemB>
        <elemC>House</elemC>
        <elemD>Door</elemD>
        etc...
   </elemB>
   <elemB> 
        <elemC>Flat</elemC>
        <elemD>Door</elemD>
        etc...
   </elemB>
   etc...
</elemA>

File 2
<elemA>
    <elemB>
        <elemC>House</elemC>
           <elemE>
            <elemF>Green</elemF>
          </elemE>
        <elemD>Door</elemD>
        etc...
   </elemB>
   <elemB> 
        <elemC>Flat</elemC>
          <elemE>
            <elemF>Blue</elemF>
          </elemE>
        <elemD>Door</elemD>
        etc...
   </elemB>
   etc...
</elemA>

Can this be done?


-----Original Message-----
From: David Carlisle [mailto:davidc@nag.co.uk]
Sent: Tuesday, September 17, 2002 9:49 AM
To: xsl-list@lists.mulberrytech.com
Subject: Re: [xsl] RE: Search Engine




> <xsl:copy-of select="/elemA/elemB[elemC=$string]/elemC[1]"/>

> r how numerous
> they are, and they  may contain multiple levels of nesting. Is there a
> straightforward method of processing the various child nodes of each
> <elemB>?

all child elements would be elemB/* instead of elemB/elemC but where
is the nesting? I'll make a guess

>  My question, however, was not very well phrased!
> What I need is something to check the text contents of all of the child
> nodes of <elemB>,however many there may be, for whole or partial
occurrences
> of the searchstring.

<xsl:copy-of select="/elemA//elemB[.//*[contains(.,$string)]/*[1]"/>

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
Solicitec has been nominated for 4 awards in the 2002 LOTIES (In Brief
magazine's legal office technology innovation awards) for Best legal office
technology supplier, Best legal office technology newcomer (for
Visualfiles), Best fee-earner support system (for SolCase), Best legal
office automation system (for SolCase). 

Your vote counts! So please, <a
href="http://www.inbrief.co.uk/nomination.asp";>click here</a> and vote for
us. 

Email Disclaimer

This Mail has been scanned for Viruses using the most up to date McAfee
Virus Definitions.

The information in this email is confidential and is intended solely for the
addressee. Access to this email by anyone else is unauthorised. If you are
not the intended recipient, any use, disclosure, copying, distribution or
retention of any part of it is prohibited and may be unlawful. If you have
received this communication in error please notify us by email or by
telephone 0113 2262000 and then delete the email and any copies of it. The
contents of this message may contain personal views that are not the views
of Solicitec, unless specifically stated.

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]