XML.orgXML.org
FOCUS AREAS |XML-DEV |XML.org DAILY NEWSLINK |REGISTRY |RESOURCES |ABOUT
OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]
Re: [xml-dev] are the regular expressions over xml structure?

> Meanwhile, I've remembered a more demonstrative example then h1/p
> grouping:
>
> "element(image), element(caption), element(table[some condition])"
>
> an image with the caption and a legend table is to be grouped. In my
> xslt stylesheets, the grouping code is far away from readability and
> maintainability. That's why I'm looking for a better approach.

You could do it with match patterns:

    <xsl:template match="image">
        image element not followed by caption and table[condition]
    </xsl:template>

    <xsl:template
match="image[following-sibling::*[1][self::caption]][following-sibling::*[2][self::table[@type
= '1']]]">
        the group
    </xsl:template>


-- 
Andrew Welch
http://andrewjwelch.com


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]


News | XML in Industry | Calendar | XML Registry
Marketplace | Resources | MyXML.org | Sponsors | Privacy Statement

Copyright 1993-2007 XML.org. This site is hosted by OASIS