Visual Studio编辑器中是否有宏从VB.NET源文件中删除所有注释?
答案 0 :(得分:4)
使用菜单编辑 - >查找和替换 - >使用正则表达式快速替换
找到:^{.+}'.+$
替换为:\1
将取代
text ' comment
到
text
答案 1 :(得分:0)
编辑*
http://bytes.com/topic/visual-basic-net/answers/579000-utility-remove-comments-vb-net-files
有一些选择。
,例如
答案 2 :(得分:0)
查找:^{(([^"']*"[^"]*"[^"'])#|[^"']*)}'.*$
替换为\1
也适用于这样的东西(SQL):
cs = "INSERT INTO db (time, t1, t2) VALUES ('" & Time.ToString & "', NULL, '" & t2 & "')" ' COMMENT