0

100 個のフィールド要素を含む親 xslt があります (ネストされたフィールドが存在します)。ここで、親と同じ構造を保持し、親からいくつかの不要なフィールドを削除して、50 個のフィールド (Excel ファイルに基づく) を含む子 xslt を作成する必要があります。どのように進めるかについての入力。

4

1 に答える 1

0

削除するフィールドのリストを配列 (または他のコレクション) に入力する方法を既に理解していると仮定すると、次のようなことができるはずです。

string[] fields = new string[] { "c", "d" };
// In actuality, the assumption is that your XmlDocument is loaded some other way
XmlDocument document = new XmlDocument();
document.LoadXml("<ABCD> <a>1</a> <b>2</b> <c>3</c> <d>4</d> </ABCD>");

string xpath = "//*[" + fields.Select(v => "self::" + v)
                              .Aggregate((a, b) => a + " or " + b) 
                      + "]";
List<XPathNavigator> nodes = document.CreateNavigator().Select(xpath).Cast<XPathNavigator>().ToList();
foreach (XPathNavigator node in nodes)
{
    node.DeleteSelf();
}

string resultDoc = document.OuterXml;
于 2013-01-30T08:34:42.133 に答える