Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
private static String removeBracketPair(String value) {
String str = value.trim();
// Assume existing both brackets
return str.substring(1, str.length() - 1);
}
}