来自.txt文件的C#字符串匹配(结果)
本文关键字:串匹配 结果 字符串 字符 txt 文件 来自 | 更新日期: 2023-09-27 18:05:27
TEXT.txt:
who
when
what
how
示例.cs:
String example = "what is the time" ;
foreach (string line in File.ReadLines(@"C:'TEXT.txt"))
{
if (example.Contains(line))
{
Messagebox.Show("True, the match is 'what'");
}
}
我制作了一个文本文件TEXT.txt
和一段代码,用于检查文本文件中的任何一行是否与示例字符串中的内容匹配我该如何判断实际匹配情况在这种情况下,它将是what
。
"实际匹配"是否不仅仅是变量行?因此:
Messagebox.Show(string.Format("True, the match is '{0}'", line));
您可以这样做:
Messagebox.Show("True, the match is '" + line + "'");