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