Tagged Questions
1
vote
1answer
32 views
Delete Xml data using php
How can I delete specific elements on xml using php
my.xml
<usr>
<uid trk= "1234">
<deleteThis>
<mychild>here</mychild>
...
1
vote
1answer
81 views
Actionscript3.0 addChild removeChild XML
I dont know if for my problem addChild and removeChild method is what i exactly need but as i read around the web that's the technique i need to work with.
This is my Xml file:
<projects>
...
1
vote
3answers
200 views
Delete one node/element from a set of similar nodes
Here's what I need to do:
sample XML (not sure if it displays right here)
<Tags>
<Tag ID="0" UserTotal="1" AllowMultipleSelect="1">
<Name>BaseSamples</Name>
<Sample ...
0
votes
0answers
22 views
Trouble deleting a record/node from and XML file in PHP
I'm trying to programmatically remove some records off an XML file. But it doesn't seem to work. Here is the code:
foreach ($x->childNodes as $item)
{
if ($item->nodeName == "XMLProduct")
{
...
0
votes
3answers
844 views
Why can I not remove a child element I've just found? NOT_FOUND_ERR
I'm building a script which has to patch XML files, including replacing one list of elements with another. The following function applies a patch (involving a possibly empty list of elements with the ...
0
votes
2answers
408 views
Delete a child node using RemoveChild()
I would like to delete just this one node, for example:
<Sample ID="544" Type="0">Sample2</Sample>
from this XML, for example:
<Tests> <Test ID="0" AllowMultipleSelect="1">
...
0
votes
4answers
395 views
Function RemoveChild(XmlNode node) failed in C#
When I try to remove some of my child element with RemoveChild(). But throw exception.
I attached my code below.
nodeName = ...
0
votes
3answers
2k views
Python xml.dom.minidom removeChild whitespace problem
I'm trying to read an xml file into python, pull out certain elements from the xml file and then write the results back to an xml file (so basically it's the original xml file without several ...
0
votes
1answer
1k views
remove element in dom4j
<root>
<elm id="1"/>
<elm id="2"/>
<elm id="3"/>
<elm id="4"/>
</root>
I want to leave id="2" in the dom,
how can domj4 to remove the other three ?
result:
...