in reply to Re: Ignore elements using twig module
in thread Ignore elements using twig module
I'm going to try it in my script and i'll come back as soon as i've results.
GrandFather, your sample could be handy but i think in that specific case doesn't help me because i need to stop and purge current twig if type element is matched.
To become more clear i add a better sample. My xml file has thousands of <container> elements with thousands of text elements to extract and import to one database. My ideia is to "twig" all <container> elements, but to speed up i need to exclude containers that match some kind of types. Just to be more dificult, <container> elements can be nested.
<container> <attribute> <type>xxx</type> </attribute> <data> <var1>a</var1> <var2>b</var2> </data> </container> <container> <attribute> <type>yyy</type> </attribute> <variables> <var1>a</var1> <var2>b</var2> </variables> </container>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Ignore elements using twig module
by basalto (Beadle) on Mar 02, 2008 at 00:32 UTC |