Utility class to change between different naming conventions.
import static com.montealegreluis.caseconverter.CaseConverter.camelCaseToKebabCase;
import static com.montealegreluis.caseconverter.CaseConverter.camelCaseToSentence;
public class Application {
public static void main(String[] args) {
System.out.println(camelCaseToKebabCase("ParseXMLDocument")); // parse-xml-document
System.out.println(camelCaseToSentence("PurchaseTickets")); // Purchase tickets
}
}
Please refer to our contribution guidelines for more details on how to contribute to this project.
Released under the BSD-3-Clause.