Example #1
0
 static String[] path(String scriptLine) {
   String[] line = scriptLine.split(",");
   String[] path = new String[line.length - 1];
   System.arraycopy(line, 1, path, 0, line.length - 1);
   for (int indexOfPath = 0; indexOfPath < path.length; indexOfPath++) {
     path[indexOfPath] =
         Script.unescapeSpecialCharacters(Script.unescapeNewLines(path[indexOfPath]));
   }
   return path;
 }