我有一个像
“ ABC [这是为了提取]”
我想提取"This is to extract"Java中的部分。我正在尝试使用split,但是它不能按我想要的方式工作。有人有建议吗?
"This is to extract"
如果您[]的字符串中只有一对方括号(),则可以使用indexOf():
[]
indexOf()
String str = "ABC[ This is the text to be extracted ]"; String result = str.substring(str.indexOf("[") + 1, str.indexOf("]"));