0

我创建了一个小型 XML 工具,它可以让我计算来自多个 XML 文件的特定 XML 标记。

代码如下:

public void SearchMultipleTags()
        {
            if (txtSearchTag.Text != "")
            {
                try
                {
                    //string str = null;
                    //XmlNodeList nodelist;
                    string folderPath = textBox2.Text;
                    DirectoryInfo di = new DirectoryInfo(folderPath);
                    FileInfo[] rgFiles = di.GetFiles("*.xml");
                    foreach (FileInfo fi in rgFiles)
                    {
                        int i = 0;
                        XmlDocument xmldoc = new XmlDocument();
                        xmldoc.Load(fi.FullName);
                        //rtbox2.Text = fi.FullName.ToString();

                        foreach (XmlNode node in xmldoc.GetElementsByTagName(txtSearchTag.Text))
                        {

                            i = i + 1;

                            //
                        }
                        if (i > 0)
                        {
                            rtbox2.Text += DateTime.Now + "\n" + fi.FullName + " \nInstance: " + i.ToString() + "\n\n";

                        }
                        else 
                        {
                            //MessageBox.Show("No Markup Found.");
                        }

                        //rtbox2.Text += fi.FullName + "instances: " + str.ToString();
                    }

                }
                catch (Exception)
                {

                    MessageBox.Show("Invalid Path or Empty File name field.");


                }
            }
            else
            {
                MessageBox.Show("Dont leave field blanks.");
            }

        }

此代码返回用户想要的多个 XML 文件中的标签计数。

现在我想搜索特定文本及其在 XML 文件中的计数。

你能建议使用 XML 类的代码吗?

谢谢和问候, Mayur Alaspur

4

3 回答 3

0

System.Xml.XPath。

Xpath 支持计数:count(//nodeName)

如果要计算具有特定文本的节点,请尝试

count(//*[text()='你好'])

请参阅如何在 C# 中使用 XPath 获取 SelectedNode 的计数?

顺便说一句,您的函数应该看起来更像这样:

private int SearchMultipleTags(string searchTerm, string folderPath) { ...
      //...
      return i;
}
于 2012-10-10T05:25:04.443 回答
0

改用LINQ2XML 。它很简单,可以完全替代其他 XML API

XElement doc = XElement.Load(fi.FullName);

//count of specific XML tags
int XmlTagCount=doc.Descendants().Elements(txtSearchTag.Text).Count();

//count particular text

int particularTextCount=doc.Descendants().Elements().Where(x=>x.Value=="text2search").Count();
于 2012-10-10T05:26:02.850 回答
0

尝试使用XPath

//var document = new XmlDocument();
int count = 0;
var nodes = document.SelectNodes(String.Format(@"//*[text()='{0}']", searchTxt));
if (nodes != null)
    count = nodes.Count;
于 2012-10-10T05:48:53.473 回答