I have a large java project and need to reformat all field names. They are currently written like this and need to be replaced with camel case:
protected SplendorAbility splendor_ability;
I could probably write a regexp for doing it but I'm not good at regexp.
Also I need to be careful because I'd like to keep underscores in ALL CAPS names (public final ones).
Is there a way apply this style via Intellij?
Thanks!