Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static String Splitme(String str) {
if (str != null && str.length() > 0 && str.charAt(str.length() - 1) == ',') {
str = str.substring(0, str.length() - 1);
}
return str;
}
}