Here you can find the source of camelCaseNameToConstant(String camelCaseName)
private static String camelCaseNameToConstant(String camelCaseName)
//package com.java2s; //License from project: Open Source License public class Main { private static String camelCaseNameToConstant(String camelCaseName) { if (camelCaseName == null || camelCaseName.isEmpty()) { return camelCaseName; }//from w w w . j ava2 s .c o m return camelCaseName.replaceAll("([a-z]{1})([A-Z]{1})", "$1_$2").toUpperCase(); } }