c#从txt中得到字符串判断回文序列
时间: 2023-09-06 19:12:18 浏览: 109
你可以使用 C# 的 `File` 类读取一个 `.txt` 文件中的内容,然后调用判断回文序列的方法。以下是一个示例代码:
```csharp
using System;
using System.IO;
class Program
{
static void Main(string[] args)
{
string filePath = @"C:\example.txt";
string content = File.ReadAllText(filePath);
bool isPalindrome = IsPalindrome(content);
Console.WriteLine("The content of the file is a palindrome: " + isPalindrome);
}
public static bool IsPalindrome(string str)
{
char[] charArray = str.ToCharArray();
Array.Reverse(charArray);
string reversedStr = new string(charArray);
return str.Equals(reversedStr, StringComparison.OrdinalIgnoreCase);
}
}
```
其中 `File.ReadAllText(filePath)` 读取指定文件的所有文本内容。你可以将 `C:\example.txt` 替换为你的 `.txt` 文件路径。程序将读取文件中的内容,判断是否为回文序列,并输出结果。
阅读全文