Tagged Questions
15
votes
4answers
4k views
Are line breaks in XML attribute values valid?
I realise that it's not elegant or desired, but is it valid for an attribute value in an XML element to span multiple lines?
e.g.
<some-xml-element value="this value goes over....
multiple ...
3
votes
2answers
65 views
read xml file from end to start in php
i want to read xml file from end to start suppose my xml like that :
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't ...
2
votes
2answers
69 views
XML::Parser breaks text strings randomly
This question is analogous to HTML::PullParser splits up text element randomly. Basically I'm running XML::Parser and when it gets strings back, it breaks them into multiple pieces (to speed things ...
0
votes
3answers
2k views
Parsing XML With Single Quotes?
I am currently running into a problem where an element is coming back from my xml file with a single quote in it. This is causing xml_parse to break it up into multiple chunks, example: Get Wired, ...
-3
votes
2answers
70 views
XML reading in JAVA. [closed]
Possible Duplicate:
What Java XML library do you recommend (to replace dom4j)?
I have been googeling for some days now and can't seem to find the right answer to my challenge.
This is what ...