我有一个包含以下内容的c#字符串:
“双引号中的文本”还有其他内容“双引号中的更多文本”
我想删除双引号中的第一个文本,以及周围的引号和以下空白,以结尾: 其他一些东西“用双引号括住更多文本”
我一直在使用Expresso尝试找出将执行此操作的正则表达式。
我的c#测试代码:
string input = "\"text in double quotes\" some other stuff \"more text in double quotes\"";
Regex regex = new Regex(@"/""[^""]+""/");
string output = regex.Replace(input, "", 1);