Is it possible to parse some Java code with a regex?
So let\'s say I want a list of the int variables from this:
int
If you really have to use regex then try something like (?<=int )\\w+, but I strongly advise using some Java parser.
(?<=int )\\w+