Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got an XML with a structure like the following;

 <items>
    <item>5</item>
    <item>3006</item>
    <item>25</item>
    <item>458</item>
    <item>15</item>
    <item>78</item>
 </items>

How do I delete the item with the value 458. Just to clarify this, I don't know the index of that item, so simply calling delete items[index] won't do here. I have to delete by value.

Any hints?

share|improve this question

2 Answers

up vote 2 down vote accepted

Using e4x filtering and the possibilities of using function inside the filter you can delete the node you want :

  • xml.item.(text()==value) will give you the node your are looking for
  • valueOf() will give you the current node you are filtering
  • delete will delete the node

so combining these infos you can do :

var xml:XML=<items>
    <item>5</item>
    <item>3006</item>
    <item>25</item>
    <item>458</item>
    <item>15</item>
    <item>78</item>
 </items>;

 function deleteValue(xml:XML, value:String):void{
   xml.item.((text()==value) && (delete parent().children()[valueOf().childIndex()]));
 }

 deleteValue(xml, "458");

 trace(xml.toXMLString());
share|improve this answer
1  
Works... But makes me want to cry. For readability I would have stuck with a for..loop – WORMSS Mar 13 '12 at 11:55
Given that I access child components of my initial XML, my source XML for this would be an XMLList (sorry I just realised that), thus I need to convert my XMLList to XML first, which gives me some problems. – Al_Birdy Mar 13 '12 at 13:17
Nevermind, works great! – Al_Birdy Mar 13 '12 at 13:47

this should solve it. Btw this will delete all direct chilren with name "item" that have value 458.

delete xml.(item == "458");

To delete all childrena and recursively subchildren that have name "item" and value 458 use:

delete xml..(item == "458");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.