I'd like to see what internal libraries are used in my Java project by searching through the code for
import com.mycompany.someproject.path.ClassName;
Let's say that my project's title is 'myproject'. What regex would match all lines that begin with
import com.mycompany.
and exclude:
myproject.path...
Matched lines would be:
import com.mycompany.tool.path.SomeClass;
import com.mycompany.sallysproject.path.SomeOtherClass;
and exclude all internal project imports:
import com.mycompany.myproject.*