Removing Elements, Text Nodes, and Attributes
package{
import flash.display.Sprite;
public class Main extends Sprite{
public function Main(){
var example:XML = <example>
<fruit color="Red">Apple</fruit>
<vegetable color="Green">Broccoli</vegetable>
<dairy color="White">Milk</dairy>
</example>;
delete example.fruit.@color;
delete example.dairy;
delete example.vegetable.text( )[0];
trace( example );
}
}
}
Related examples in the same category