Example

public class TestClass {
static void MethodName() {
}
}


Solution
The default regular expression mask ensures that static method names start with a lowercase letter.

To edit the regular expression, click on the [Details...] button.


public class TestClass {
static void methodName() {
}
}