Let's say I have the following JSONS:
{
"Owner": "Bob",
"Company: "A:
}
{
"Owner": "Alice",
"Company: "A"
"Age": 42
}
How can I create an integer identifier for the entire json so I could know if a key/value is in it?
I'm thinking of giving each of the different keys and values an ID:
so for example:
Keys:
Owner: 1
Company: 2
Age: 3
Values:
Bob: 1
Alice: 2
A: 3
42: 4
But I'm lacking a way to combine them together to one number so once I would like to know if a certain key or value is in the JSON I could reverse manipulate the number somehow and check.
question from:
https://stackoverflow.com/questions/65905002/how-can-i-create-a-representation-of-json-as-an-integer 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…