RegEx to exclude two strings without negative lookahead
I need to exclude any file that has name BUILD.BAZEL
or WORKSPACE.BAZEL
(case sensitive). I cannot use negative lookahead as Go regex does not support negative lookahead. I have this.
GoLang – RegEx to exclude two strings without negative lookahead
I need to exclude any file that has name BUILD.BAZEL AND WORKSPACE.BAZEL(case sensitive). I cannot use negative lookahead as the Go Lang does not support negative lookahead. I have this.