1

私のxmlは次のようになります:

<x>
  <y a1= "abc" a2= "xyz" a3="2" a4="4" a5="8"/>
  <y a1= "def" a2= "hij" a3="5" a4="10" a5="15"/>
</x>

次のコードは、私のxmlの値をフィルタリングし、結果を画面に出力します。

    static void Main(string[] args)
            {
                int first;
                int second;
                int third;
                XDocument doc = XDocument.Load(xmlFile);
                IEnumerable<XElement> rows = from row in doc.Descendants("x")
                                             where row.Attribute("a1").ToString() == "abc" & row.Attribute("a2").ToString() == "xyz"
                                             select row;
                foreach (XElement ele in rows)
                {
                    IEnumerable<XAttribute> aList = from att in ele.DescendantsAndSelf().Attributes()
                                                    select att;
                    foreach (XAttribute xatr in atrList)
                    {
                        Console.WriteLine(att);
                    }
                }
            }
        }
    }

結果を画面に表示する代わりに、フィルター処理された行の値a3、a4、およびa5を変数1、2、および3番目に割り当てます。また、a3、a4、a5の値を新しい値で上書きしたいと思います。

4

2 に答える 2

2
static void Main(string[] args)
        {
            XDocument doc = XDocument.Load(xmlFile);
            IEnumerable<XElement> rows = from row in doc.Descendants("x")
                                         where row.Attribute("a1").ToString() == "abc" & row.Attribute("a2").ToString() == "xyz"
                                         select row;

            int first;
            int second;
            int third;

            foreach (XElement ele in rows)
            {
                Int32.TryParse(ele.Attribute("a3").Value, out first);
                Int32.TryParse(ele.Attribute("a4").Value, out second);
                Int32.TryParse(ele.Attribute("a5").Value, out third);

                Console.WriteLine(string.Format("{0} {1} {2}", first, second, third);
            }
        }
    }
}
于 2012-11-30T14:44:41.807 に答える
0

インデックスに基づいて、フィルタリングされた行に設定するだけです。内部のfoeach()ループを次のように置き換えます。

IEnumerable<XAttribute> aList = (from att in ele.DescendantsAndSelf().Attributes()
                                                    select att).ToList();
first = atrList[2];
second = atrList[3];
third = atrList[4];
于 2012-11-30T14:38:17.957 に答える