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