【发布时间】:2009-03-17 08:01:15
【问题描述】:
我正在处理要替换“;”的 pl/sql 代码用'~'注释。
例如
如果我有一个代码:
--comment 1 with; select id from t_id; --comment 2 with ; select name from t_id; /*comment 3 with ;*/
然后我希望我的结果文本为:
--comment 1 with~ select id from t_id; --comment 2 with ~ select name from t_id; /*comment 3 with ~*/
可以在 C# 中使用正则表达式吗?
【问题讨论】:
标签: c# regex parsing plsql csv