返回中间字母或回文字母的功能

时间:2015-08-26 08:20:38

标签: c#

我正在编写一个函数来测试一个字符串是否是回文并且我想知道如果字符串确实是回文,如何返回中间字母或字母?

这是我到目前为止所拥有的:

我的bool检查字符串是否是回文:

public static bool IsPalindrome(string input)
{
    int i = 0;
    int j = input.Length - 1;
    while (true)
    {
        if (i > j)
        {
            return true;
        }
        char a = input[i];
        char b = input[j];

        if (!a.Equals(b))
        {
            return false;
        }
        i++;
        j--;
    }
}

以下是我希望能够打印出中间字母的地方:

while (true)
{
    Console.Clear();
    Regex myRegex = new Regex("[ ;:,.-?'!\"]");
    string userInput = String.Empty;
    Console.WriteLine("Please enter sentence or phrase");
    userInput = Console.ReadLine();
    Console.WriteLine();

    if (IsPalindrome(myRegex.Replace(userInput, string.Empty).ToLower()))
    {
        Console.WriteLine("True");
        Console.WriteLine("Press any key to continue");
    }
    else
    {
        Console.WriteLine("False");
        Console.WriteLine("Press any key to continue");
    }

    Console.ReadLine();

}

0 个答案:

没有答案