我正在查看包含以下术语的c#Code代码:
System.Drawing.SystemColors.Highlight
我想在包含使用“查找和替换VisualStudio功能”的术语的每一行的前面设置注释标记(//
)。
你们知道快速的方法吗?
答案 0 :(得分:4)
您可以使用:
Text to find
- >的 ^(.*System.Drawing.SystemColors.Highlight.*)$
强> Replace with
- >的 //$1
强> .*
或 [x] Use Regular Expressions
答案 1 :(得分:3)
按 CTRL + H 打开查找&取代
查找“System.Drawing.SystemColors.Highlight
”
并将其替换为“// System.Drawing.SystemColors.Highlight
”。
答案 2 :(得分:1)
您可以使用正则表达式执行此操作。
搜索:(^.*System.Drawing.SystemColors.Highlight.*)$
替换为://$1