how to remove [ in a string java code example
Example 1: Java remove character from string
// remove last character from string in java
public class SubstringDemo
{
public static void main(String[] args)
{
String strInput = "Flower Brackets!";
String strOutput = strInput.substring(0, strInput.length() - 1);
System.out.println(strOutput);
}
}
Example 2: remove a string from a string java
str = "manchester united (with nice players)"
matched = str.match(/.*(?=\()/)
str.replace(matched[0].strip) if matched