0

大家好,我需要一些帮助来创建一个将普通语法转换为人类可读格式的函数:

语法如下所示:

[OPENTAG]
(type)name:value
[OPENTAG]
(type)name:value
(type)name:value
(type)name:value
[/CLOSETAG]
[/CLOSETAG]

想把它变成这样:

    [开放标签]
         (类型)名称:值
         [开放标签]
             (类型)名称:值
             (类型)名称:值
             (类型)名称:值
         [/关闭标签]
    [/关闭标签]

    private string textFormater(string input)
    {
        string[] lines = Regex.Split(input, "\r\n");
        int tabs = 0;
        string newtext = "";
        foreach (string line in lines)
        {

            Match m = Regex.Match(line, "\\[.*\\]");
            bool isTop;
            bool isTopClose = false;
            string tabtext = "";

            if (m.Success)
            {
                if (line.Contains("/"))
                {
                    tabs--;
                    isTopClose = true;
                }
                else
                {
                    tabs++;
                }
                isTop = true;
            }
            else
            {
                isTop = false;
            }

            if (isTop && !isTopClose && tabs == 1)
            {
                newtext += line;
            }
            else if (isTop && !isTopClose)
            {
                for (int i = 1; i <= tabs - 1; i++)
                {
                    tabtext += "\t";
                }
                newtext += "\r\n" + tabtext + line;
            }
            else
            {
                for (int i = 1; i <= tabs; i++)
                {
                    tabtext += "\t";
                }
                newtext += "\r\n" + tabtext + line;
            }

        }
        return newtext;
    }

我有 atm 解决方案,但代码如此混乱和缓慢,在 2mb 的文件中需要很长时间 :) 感谢您的帮助!

干杯

4

1 回答 1

2

尝试StringBuilder为您的输出文本使用 a 而不仅仅是一个字符串,这应该会加快速度。

编辑:

这是做你想做的吗?

private static string textFormater2(string input)
    {
        string[] lines = Regex.Split(input, "\r\n");
        int tabCount = 0;
        StringBuilder output = new StringBuilder();

        using (StringReader sr = new StringReader(input))
        {
            string l;
            while (!string.IsNullOrEmpty(l = sr.ReadLine()))
            {
                if (l.Substring(0, 1) == "[")
                    if (l.Contains('/'))
                        tabCount--;

                string tabs = string.Empty;
                for (int i = 0; i < tabCount; i++)
                    tabs += "\t";

                output.AppendLine(tabs + l);

                if (l.Substring(0, 1) == "[")
                    if (!l.Contains('/'))
                        tabCount++;
            }
        }

        return output.ToString();
    }
于 2012-11-07T06:18:47.430 回答