我使用否定前瞻来查找不以注释开头的每一行(仅“//”),但在“//”符号之前可以有任意数量的制表符。
这是我的正则表达式(我使用的是记事本++):
^\t*(?!//).*
示例:在此示例文件中:
LineOfCode ...
// Other Comment
// Comments can contain every time of symbol, including "//", ".", etc.
// /**
// Another comment ...
// */
Line Of Code ...
// .,.,-
只有第一行和第七行应该匹配,但是我的正则表达式都匹配。
答案 0 :(得分:1)