I\'m making a method to read a whole class code and do some stuff with it.
What I want to do is get the name of the method, and make a String with it.
Someth
Don't bother reinvent the wheel, use the method in commons-lang
String input = "methodName"; String[] words = StringUtils.splitByCharacterTypeCamelCase(methodName); String humanised = StringUtils.join(words, ' ');