Skip to content

Instantly share code, notes, and snippets.

@trebron21
trebron21 / Regex to search only in NCLOCs
Last active February 16, 2023 03:10
Regex to search only between uncommented lines (NCLOC - Non-Comment Lines Of Code)
Search only between uncommented lines (NCLOC - Non-Comment Lines Of Code):
First solution matches "keyWord" which is not commented with single line comment //
^*(?<!\/\/.*)keyWord // this uses negative lookbehind
or another solution without lookbehind for regex engines, that does not support it:
^[^//]*keyWord