我收到这种格式的字符串TEST [52.5, 77.5]
收到上述字符串后,我想形成两个元素,如下所示
TEST 52.5
TEST 77.5
我已经尝试如下所示,但没有得到我想要的输出。
public class Test {
public static void main(String args[]) throws Exception {
String string = "TEST [52.5, 77.5]";
String strModf = string.replaceAll("\\[", " ");
String newStr = strModf.replaceAll("\\]", " ");
// Used StringBuffer here but not able to succeed .
}
}