Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
1
vote
2answers
95 views

XML Parser Android

I have a huuge HTML File, somthing like this: <html> <head> </head> <body> <div id="wraper"> <div id="..."> </div> <div id="..."> ...
0
votes
1answer
35 views

Creating valid XML with ColdFusion XMLParse

I am attempting to use XMLParse against content that is not valid xhtml. In the html code, the tags are not properly terminated. In order to terminate them, I am using the replace function to find ...
0
votes
0answers
17 views

Which is better for parsing XML string in PHP? simplexml_load_string OR any xml_to_array converter function?

I want to parse large data from xml to array in PHP. I have two option, 1st is using simplexml_load_string which will give me an object, from which I can make my desired object. 2nd is using any ...
0
votes
1answer
59 views

NSXmlparser's delegate doesn't work?

XMLParser file is working seperately but when I put it to my project I do not face any error but I cannot take data from URL. I guess , my setDelegate is not working.my xmlpar and print functions are ...
0
votes
1answer
149 views

How do I parse a hash to XML using XmlSimple?

I have a hash that i wanted to parse to XML using SimpleXML but there is a trick I dont know how to handle: My hash looks like: require 'xmlsimple' test = { "subroot" => { field1 => {'var1' ...
0
votes
2answers
1k views

BioPython: extracting sequence IDs from a Blast output file

I have a BLAST output file in XML format. It is 22 query sequences with 50 hits reported from each sequence. And I want to extract all the 50x22 hits. This is the code I currently have, but it only ...
0
votes
2answers
811 views

Umlaut in Java SAX Parser

I am currently having trouble with German umlaut values in a XML document I received. It displays / saves the value as a "ü" instead of a "ü". The XML Encoding is set to UTF-8 which should be ...
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 ...