我有以下代码:
if (Regex.IsMatch(fileLine, @"\s;$")) {
listBox1.Items.Add(fileLine);
}
我需要匹配以&#34 ;;"结尾的整行。
答案 0 :(得分:5)
只需使用string.EndsWith
:
if (fileLine.EndsWith(";"))
{
listBox1.Items.Add(fileLine);
}
答案 1 :(得分:0)
if (Regex.IsMatch(fileLine, @".*;$"))
{
listBox1.Items.Add(fileLine);
}
.*
将匹配任何内容OR
更短@";$"
答案 2 :(得分:-1)
这可能会解决^[^;]*;$