I want to match all lines that have any uppercase characters in them but ignoring the string A_
To add to the complication I want to ignore everything after a different string, e.g. an open comment
Here are examples of what should and shouldnt match
Matches:
- fooBar
- foo Bar foo
- A_fooBar
- fooBar /* Comment */
Non Matches (C_ should not trigger a match)
- A_foobar
- foo A_bar
- foobar
- foo bar foo bar
- foobar /* Comment */
thanks :)