Giter Site home page Giter Site logo

Comments (9)

volans- avatar volans- commented on May 27, 2024 4

@volans- Or I want to get 123, is there any better way?

It depends on your data and what you want, for example you can get all the values for the key q!qq with:

!stringMember|@fromstr|#.q!qq

that returns in this case:

[123]

If you know that you always want the first one then you can get it with:

!stringMember|@fromstr|#.q!qq|0

from gjson.

volans- avatar volans- commented on May 27, 2024 1

@15083787153 your message has some formatting problem, so I might have misunderstood, but it's probably just a problem of escaping the special character, see also the related doc.

With a JSON of:

{"!stringMember": "[{\"q!qq\": 123},{\"key2\": 2324}]"}

and a query of:

!stringMember|@fromstr|#(q\!qq).q!qq

you get: 123

Is that what yo were looking for?

from gjson.

15083787153 avatar 15083787153 commented on May 27, 2024

this is my code:
`package main

import (
"fmt"

"github.com/tidwall/gjson"

)

func main() {
const jsonNew = {"!stringMember": "[{\"q!qq\": 123},{\"key2\": 2324}]"}
fmt.Println("result:", gjson.Get(jsonNew, !stringMember|@fromstr|#(q!qq).q!qq))
}
`

but the result is empty

from gjson.

15083787153 avatar 15083787153 commented on May 27, 2024

thank you so much! can you tell me all the special character?I need special handling for these special character,but I can't find it in the docs。

from gjson.

volans- avatar volans- commented on May 27, 2024

For that you have to ask @tidwall, I don't think all of them are documented and they might depend on where you use them. For example ! is used for literals in the syntax but does't need to be escaped in the path !stringMember but it does in the query #(q\!qq).
That said, if you escape it in all places it works the same:

\!stringMember|@fromstr|#(q\!qq).q\!qq

from gjson.

15083787153 avatar 15083787153 commented on May 27, 2024

@tidwall Do you know the range of special character? I need to do special processing in a specific area.

from gjson.

15083787153 avatar 15083787153 commented on May 27, 2024

@volans- Or I want to get 123, is there any better way?

from gjson.

15083787153 avatar 15083787153 commented on May 27, 2024

Through the documentation of gjson and my own practice, I found that these are special characters, but I don't know if there are more characters。
! ? * > < = \ % ( )

from gjson.

15083787153 avatar 15083787153 commented on May 27, 2024

@volans- Or I want to get 123, is there any better way?

It depends on your data and what you want, for example you can get all the values for the key q!qq with:

!stringMember|@fromstr|#.q!qq

that returns in this case:

[123]

If you know that you always want the first one then you can get it with:

!stringMember|@fromstr|#.q!qq|0

Thank you very much! This is exactly what I need.

from gjson.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.