I have a multi-class java file. One of those classes contains a main method (public static void main...). Example:
class one {...}
class two {...}
class three {
public static void main(String[] args) {...}
}
I tried
class.*?[^.*?]*?main
but that matches starting at class one not class three