I need a Regex that will match a java method declaration. I have come up with one that will match a method declaration, but it requires the opening bracket of the method to be on the same line as the declaration. If you have any suggestions to improve my regex or simply have a better one then please submit an answer.
Here is my regex: "\w+ +\w+ *\(.*\) *\{"
For those who do not know what a java method looks like I'll provide a basic one:
int foo()
{
}
There are several optional parts to java methods that may be added as well but those are the only parts that a method is guaranteed to have.
Update:
My current Regex is "\w+ +\w+ *\([^\)]*\) *\{"
so as to prevent the situation that Mike and adkom described.
Have you considered matching the actual possible keywords? such as:
(?:(?:public)|(?:private)|(?:static)|(?:protected)\s+)*
It might be a bit more likely to match correctly, though it might also make the regex harder to read...