XmlElement.RemoveAttributeAt Method
.NET Framework 4
Removes the attribute node with the specified index from the element. (If the removed attribute has a default value, it is immediately replaced).
Assembly: System.Xml (in System.Xml.dll)
Parameters
- i
- Type: System.Int32
The index of the node to remove. The first node has index 0.
Return Value
Type: System.Xml.XmlNodeThe attribute node removed or null if there is no node at the given index.
The following example removes an attribute from an element.
using System; using System.IO; using System.Xml; public class Sample { public static void Main() { XmlDocument doc = new XmlDocument(); doc.LoadXml("<book genre='novel' ISBN='1-861001-57-5'>" + "<title>Pride And Prejudice</title>" + "</book>"); XmlElement root = doc.DocumentElement; // Remove the genre attribute. root.RemoveAttributeAt(0); Console.WriteLine("Display the modified XML..."); Console.WriteLine(doc.InnerXml); } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Sample Using PowerShell
<#
.SYNOPSIS
This script removed an an attribute from an XML element.
.DESCRIPTION
This script creates an XML document, then removes an
Attribute using the RemoveAttributeAt method.
.NOTES
File Name : Remove-XMLAttributeAt.ps1
Author : Thomas Lee - tfl@psp.co.uk
Requires : PowerShell Version 2.0
.LINK
This script posted to: http://www.pshscripts.blogspot.com
MSDN Sample posted at: http://msdn.microsoft.com/en-us/library/system.xml.xmlelement.removeattributeat.aspx
.EXAMPLE
PSH [C:\foo]: .\Remove-XMLAttrivuteAt.ps1'
Display the initial XML...
<book genre="novel" ISBN="1-861001-57-5"><title>Pride And Prejudice</title></book>
Display the modified XML...
<book ISBN="1-861001-57-5"><title>Pride And Prejudice</title></book>
#>
# Create and load an XML Document
$Doc = New-Object System.Xml.XmlDocument
$Doc.LoadXml("<book genre='novel' ISBN='1-861001-57-5'>" +
"<title>Pride And Prejudice</title>" +
"</book>")
# Set root
$Root = $Doc.DocumentElement
# Display initial XML
"Display the initial XML..."
$Doc.InnerXml
# Remove the genre attribute
$Return = $Root.RemoveAttributeAt(0)
# Display result
"Display the modified XML..."
$Doc.InnerXml
- 6/28/2010
- Thomas Lee
- 6/30/2010
- Thomas Lee