ProgrammingThis forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
when using a DTD i believe you can have an element required.
could this be solved with an if/else-like statement? you can use <xsl:when>... elements to test whether the data was given or not.
what you are trying to do is to require that the element contains data (not just attributes)
ie
<product id="34" />
doesnt supply CDATA.. only the attributes
while
<product id="34">Cheese</product>
gives data to the element, along with an attribute.
(dunno where i was going with this, sorry lol)
i think maybe using a DTD making the element of type DATA and #REQUIRED.
my thoughts
no actually, I am trying to process in perl.
I have > 600 big XML files. > 7 million lines.
Using saxon Xquery it is is veryslow even to
extract a simple query. Plus it uses about
20MegaGigaBugga bytes for each file.
So i am trying a perl method, which is much quicker.
And it would just be easier if all tags were closed off properly.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.