0

我已经制作了从 2a3b 到 aabbb 的代码。当没有给出数字时,这也必须适用。就像 aa2b => aabb。该程序正在完全运行,但我的问题是,它占用了大量空间。我认为这是我的拆分,但如果输入是 2a2b,我的数组将是这样的:

2 空 空 a 2 空 空 b

有人知道我在做什么错吗?是我的分裂吗?

static void Main(string[] args)
        {
            string test = "";
            int intNumber = 1;

            string value = "2a2b";
            string[] array = new string[20];
            int count = 1;

            array = Regex.Split(value, "(\\d{0,2})");

            while (count < array.Length)
            {
                int num;
                if (array[count] != "")
                {
                    bool isNumeric = int.TryParse(array[count], out num);
                    if (!isNumeric)
                    {

                        test = test + string.fill(array[count], intNumber);
                        test = test + array[count];

                        Console.WriteLine(test);

                        intNumber = 1;
                    }
                    else
                    {
                        intNumber = num;

                    }  
                }
                count++;
            }
            Console.WriteLine("woord:" + test);


            Console.ReadLine();
4

4 回答 4

1

用一个简单的Regex.Replace怎么样?

string input = "2a3bcccc";
string output = Regex.Replace(
         input, 
         @"(\d+)(\w)", 
         m => new String(m.Groups[2].Value[0],int.Parse(m.Groups[1].Value)));

结果:aabbbcccc

于 2013-04-08T19:31:38.333 回答
0

解决您的问题的一种更简单的方法是摆脱正则表达式,数组创建将如下所示:

 char[] array = value.ToArray();

array代码,由于char 数组(而不是字符串数组)和一些改进而进行了较小的更正:

static void Main(string[] args)
{
    string test = "";
    int intNumber = 1;

    string value = "2a2b";

    foreach (char c in value.ToArray())
    {
        int num;
        bool isNumeric = int.TryParse(c.ToString(), out num);

        if (!isNumeric)
        {
            test = test + new string(c, intNumber);

            Console.WriteLine(test);

            intNumber = 1;
        }
        else
        {
            intNumber = num;
        }
    }

    Console.WriteLine("woord:" + test);
    Console.ReadLine();
}
于 2013-04-08T19:27:13.593 回答
0

不使用正则表达式的快速测试程序就像一个魅力。

const string value = "aa2b";
var result = "";

for (var i = 0; i < value.Length; i++)
{
     int num;
     if (Int32.TryParse(value.Substring(i, 1), out num))
     {
         for (var j = 0; j < num; j++)
         {
            result += value.Substring(i + 1, 1);
         }
            i++;
     }
     else
     {
         result += value.Substring(i, 1);
     }
}

textBox1.AppendText("woord:" + result);
于 2013-04-08T19:39:30.410 回答
0

我通常会尽量避免使用正则表达式,除非我需要验证一个复杂的模式。

这是我对您的问题的解决方案:

string k = Console.ReadLine();

string t = "";
int count = 0, next;

for (int i = 0; i < k.Length; i++)
{
    while (int.TryParse(k[i].ToString(), out next)) // Find the count of the next letter
    {
        count = count * 10 + next; // If count had a 2, and the next character is 3 (means we need to calculate 23), simply multiply the previous count by 10, and add the new digit
        i++; // Move to the next character
    }

    t += new String(k[i], count > 0 ? count : 1); // Add the new sequence of letters to our string
    count = 0; // Clear the current count
}

Console.WriteLine(t);

您可以通过使用类来优化上述StringBuilder内容,但我认为首先了解通用解决方案就足够了,而不是试图找到优化。

于 2013-04-08T19:35:47.027 回答