按 Java 中首次找到的字符串拆分
2022-09-01 16:55:51
是否可以告诉 String.split(“(”) 函数它只能按第一个找到的字符串 “(”进行拆分?
例:
String test = "A*B(A+B)+A*(A+B)";
test.split("(") should result to ["A*B" ,"A+B)+A*(A+B)"]
test.split(")") should result to ["A*B(A+B" ,"+A*(A+B)"]