我需要一个正则表达式或某种方法来删除顺序引号。
示例:“我在报价中”到“我在报价中”
或 ""我在引号中"" 到 "我在引号中"。
我对正则表达式了解不多。我也尝试使用 replace 方法,但在转义内容时遇到了麻烦。
我一直在尝试这个:
static void Main(string[] args)
{
string pattern = @"^\s*""?|""?\s*$";
string input = Console.ReadLine();
Console.WriteLine(Regex.Replace(input, pattern, string.Empty));
Console.ReadKey();
}