Some Simple Regexes for Finding If Statements
I know almost nothing about regexes, these are just some useful ones I created for checking code style, if statements specifically.
Find single line if statements (Useful when your coding style requires adding curly braces to everything):
/^ *if \(.+\).*(;)/igm
Find multiple line if statements (Useful when your coding style favours less lines):
/^ *if \(.+\).*({)/igm
Regex101 is really impressive. You can paste a regex and check it against some test inputs. The best part is the description of what each symbol in your regex does and even what some of the combined parts do, such as various brackets around groups of expressions.