in src/main/java/org/apache/sling/installer/factories/configuration/impl/ConfigUpdateHandler.java [137:150]
private int getMiddleDotSplitIndex(final String strId) {
int dotCount = 0;
int[] dotIndexArray = new int[strId.length()];
for (int i=0;i<strId.length();i++)
if (strId.charAt(i) == '.') {
dotCount++;
dotIndexArray[dotCount] = i;
}
return dotIndexArray[dotCount/2]; // get the middle dot index
}