Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在服务器上查询一个 PHP 脚本,返回一些 php 回显。
下面的片段是一个 JSON 片段:
{"cid":"212"}
整个输出有一些 HTML 片段
<br>Order posted 214 - 192.168.1.22:4444 <br>{"cid":"214"}
从其余部分中过滤 JSON 部分的最简单方法是什么?
我知道杀死所有其他输出会更容易,但我仍然希望为这种情况找到一个快速的解决方案。
感谢正则表达式的想法
Pattern pattern = Pattern.compile("\\{(.*?)\\}"); Matcher matcher = pattern.matcher(text); while (matcher.find()) { System.out.println(matcher.group(0)); }