Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static String pathSeparator = ".";
public static String getNextPathInPath(String path) {
int pos = path.indexOf(pathSeparator);
if (pos >= 0)
return path.substring(pos + 1);
return path;
}
}