Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static String getLastString(String str) {
String[] splitStr = str.split("/");
int len = splitStr.length;
if (len == 0)
return str;
String result = splitStr[len - 1];
return result;
}
}