gpt4 book ai didi

Java正则表达式获取JSON模式

转载 作者:太空宇宙 更新时间:2023-11-04 06:11:42 30 4
gpt4 key购买 nike

我需要从字符串中获取 JSON 对象

在此字符串中,JSON 内容是唯一的,形式如下:

abit2:{....};

我用这种方式制作了我的正则表达式,但我无法在分号处停止

public String getJSON(String content) throws MalformedURLException, IOException{

String json = "";

String regex = "abit2:([\\s\\S]*)\\};";
Pattern pattern = Pattern.compile(regex);
Matcher matcher = pattern.matcher(content);
while (matcher.find()) {
json = matcher.group().replace("abit2:", "");
}

return json;
}

最佳答案

您忘记包含左大括号,并且需要将此 [\\s\\S]* 模式设置为非贪婪模式。

String regex = "abit2:\\{([\\s\\S]*?)\\};";

DEMO

关于Java正则表达式获取JSON模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28644136/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com