我想替换以下 3 行:
this.CSType = typeof(DateTimeOffset?);
this.CSTypeString = "Target";
this.MappedCSType = SQLTypes.MappedCSType.NullableDateTimeOffset;
有了这个:
result = "Target";
所以我尝试使用这个正则表达式:
寻找::bthis.CSType = typeof(*);\n:bthis.CSTypeString = "{[^"]+}";\n:bthis.MappedCSType = SQLTypes.MappedCSType.*;
代替:result = "\1";
但是有一个错误:Grouped expression is missing ')'.
我的表达有问题吗?你的建议是什么?