Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static String getFooterFromLocation(String location) {
if (location.indexOf(",") != -1)
return location.substring(location.indexOf(",") + 2);
else
return "";
}
}