Java tutorial
//package com.java2s; /** * JXyDiff: An XML Diff Written in Java * * Contact: pascal.molli@loria.fr * * This software is free software; you can redistribute it and/or * modify it under the terms of QPL/CeCill * * See licences details in QPL.txt and CeCill.txt * * Initial developer: Raphael Tani * Initial Developer: Gregory Cobena * Initial Developer: Gerald Oster * Initial Developer: Pascal Molli * Initial Developer: Serge Abiteboul * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ public class Main { /** * Path manipulation. * * @param nodePath * @return */ public static String getParentPath(String nodePath) { // add for report if (nodePath.lastIndexOf(":") == -1) { return nodePath; } // return nodePath.substring(0, nodePath.lastIndexOf(":")); } }