Re: How to get value wrapped in json?

2022-05-06 Thread David G. Johnston
On Friday, May 6, 2022, Shaozhong SHI  wrote:

> A json object is like this - {3}.
>
> How to get the value -3 out of this json object {3}
>
>
That isn’t valid json so your question doesn’t make sense.

Just treat it as a text type and use one or more of the documented text
functions to manipulate it.

David J.


How to get value wrapped in json?

2022-05-06 Thread Shaozhong SHI
A json object is like this - {3}.

How to get the value -3 out of this json object {3}

David