如何从 JSON 字符串中的布尔值中删除引号?

发布于 2024-11-06 11:00:56 字数 161 浏览 0 评论 0原文

我有:

String example = {"test":"true"}

但我想有:

example = {"test":true}

如何将第一个字符串转换为第二个字符串?

I have:

String example = {"test":"true"}

but I want to have:

example = {"test":true}

How can I convert the first string to the second?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

煮茶煮酒煮时光 2024-11-13 11:00:56

您可以使用 String result = example.replaceAll(":\"true\"", ":true"}; 和 String result = example.replaceAll(":\"false\" ", ":false"}; 如果只有布尔值。

You can use String result = example.replaceAll(":\"true\"", ":true"}; and String result = example.replaceAll(":\"false\"", ":false"}; if there are only boolean values.

最初的梦 2024-11-13 11:00:56

使用 正则表达式 和/或 String 类方法,如“replaceAll”。

Use regular expression and/or String class method like 'replaceAll'.

抚你发端 2024-11-13 11:00:56

如果您希望正确完成,那么您需要确保处理 json 数据中的其他条件。
假设 parse_data 是 JSONObject (java)

String raw_tag = parse_data.toString();
        raw_tag = raw_tag.replaceAll(":\"true\"", ":true");
        raw_tag = raw_tag.replaceAll(",\"true\"", ",true");
        raw_tag = raw_tag.replaceAll("\\[\"true\"", "\\[true");
        raw_tag = raw_tag.replaceAll(":\"false\"", ":false");
        raw_tag = raw_tag.replaceAll(",\"false\"", ",false");
        raw_tag = raw_tag.replaceAll("\\[\"false\"", "\\[false");
System.out.print(parseData);

If you want it done right, then you need to make sure to take care of other conditions in the json data.
Assuming parse_data is JSONObject (java)

String raw_tag = parse_data.toString();
        raw_tag = raw_tag.replaceAll(":\"true\"", ":true");
        raw_tag = raw_tag.replaceAll(",\"true\"", ",true");
        raw_tag = raw_tag.replaceAll("\\[\"true\"", "\\[true");
        raw_tag = raw_tag.replaceAll(":\"false\"", ":false");
        raw_tag = raw_tag.replaceAll(",\"false\"", ",false");
        raw_tag = raw_tag.replaceAll("\\[\"false\"", "\\[false");
System.out.print(parseData);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文