protected java.lang.String | extractVariablePart(java.lang.String name)Returns the part of the given string that matches the * in the
"from" pattern replacing file separators with dots
String var = name.substring(prefixLength,
name.length() - postfixLength);
return var.replace(File.separatorChar, '.");
|