gpt4 book ai didi

java - 如何使用 Java Regex 提取 json 字符串中括号内的值

转载 作者:行者123 更新时间:2023-12-02 09:15:59 25 4
gpt4 key购买 nike

我想使用正则表达式提取第二个 [] 内使用的值

[
"Shoes for men wither",
"Shoes for men wither leather",
]

enter image description here

我已尝试以下操作:检查引号之间的所有单词。

 Matcher m = Pattern.compile("\"([^\"]*)\"").matcher(response);

上面的问题是它给了我内部数组之外的其他值。

最佳答案

这看起来像 JSON,即 not a regular language ,因此无法用正则表达式可靠地解析。几乎可以肯定,使用 JSON 解析库会更好,例如 Gsonjson.org 中列出的众多之一.

关于java - 如何使用 Java Regex 提取 json 字符串中括号内的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58985139/

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