Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: search and replace

From: "roy axenov" <r_axenov@----.-->
To: NULL
Date: 2/6/2007 11:49:00 AM

On Feb 6, 5:57 pm, foolproofp...@gmail.com wrote:
> Hey everyone. I am running into a problem with unique ids
> that need to be compared in two xml files. The actual
> object name is represented with its unique id later in
> the xml file, so i need to do a search on an id, find its
> name, and then replace the original id with the name
> instead. If this doesn't make much sense, here is an
> example:
>
> <DBViewer template_id=" .... />

Ouch. That's not particularly well-formed.

>     <Fruits
> type="ObjectLink" >:1170775272:459887139:</Fruits>
> </DBViewer>
>
> <excel_database template_id=":324:431:"
> id=":1170775272:459887139:" name="banana" />
>
> In this example, the Fruit ObjectLink should be "banana"
> because it has the same id as the database below.

You should've posted some code. What precisely your problem
is? Something like this:

  <xsl:template match="*[@type='ObjectLink']">
    <xsl:copy>
      <xsl:apply-templates
        select=
        "
          //excel_database[@id=current()/text()]/@name
        "/>
    </xsl:copy>
  </xsl:template>

...should do the trick.

--
roy axenov



transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent