我有一个如下字符串:
String text = "This is awesome
Wait what?
[[Foo:f1 ]]
[[Foo:f2]]
[[Foo:f3]]
Some texty text
[[Foo:f4]]
现在,我正在尝试编写一个函数:
public String[] getFields(String text, String field){
// do somethng
}
enter code here
如果我使用 field = "Foo" 传递此文本,则应返回 [f1,f2,f3,f4]
我如何干净地做到这一点?