Skip to main content

All Questions

Tagged with
0 votes
1 answer
56 views

Trying to pase a string in javascript

I have this string, which is basically is an array of json objects, but it is a string "[{'RK': 1, 'RN': 'CB6402AT', 'Marka': 'Zeleno', 'Model': 'Suzuki', 'G_PR': 1997, 'KM': 10000, 'Kupe': 'A', '...
ViktorAlexiev's user avatar
0 votes
1 answer
69 views

In Snowflake, how do I parse a JSON object?

In Snowflake, how do I parse a JSON object? I would like to separate the JSON object whenever this sequence "", occurs within it. Below is my array. [ "JOE_SMITH 14:29:02", &...
HoosierDuckling's user avatar
-1 votes
1 answer
94 views

How to manually parse a nested array from a JSON file into a nested array of a data model?

I recently started learning Swift and was faced with the next problem. I need to use the Alamofire framework and implement manual data parsing from the JSON file into the data model. In this case, the ...
maxMas's user avatar
  • 45
0 votes
1 answer
73 views

How to fix this error: type org.json.JSONArray cannot be converted to JSONObject [duplicate]

I want remove key and value for ProductCharacteristic ->name. How it can be done in Java and how to fix this error? type org.json.JSONArray cannot be converted to JSONObject This is my JSON file: [ ...
Catea's user avatar
  • 13
0 votes
1 answer
103 views

Azure logic app join action after file iteration

I have a quite simple workflow. I have a text file including rows. MLC_AFNV0006F0F5.0F.F5#0F:05:FF055F3F0F39 ...
USSSR's user avatar
  • 11
0 votes
2 answers
790 views

Excel VBA - parse JSON string and set cell values based on key:values

I have an Excel spreadsheet with columns: | A | B | C | D | | Job number | Status | Actual Hrs | % Complete | 1___|____________|________|____________|...
Mathewjl's user avatar
0 votes
0 answers
31 views

parse an array of objects from string form [duplicate]

I'm getting a response from an api in string form like this: '[ { q: "What does DSA stand for?", o1: "Data Structure Algorithm", o2: "Data Structure and ...
SaifUllah's user avatar
1 vote
0 answers
35 views

Parse JsonArray without any root to POJO class in Java

I am trying to map failed response of an api to a java class. The failed response looks like this . The 200OK response is getting mapped correctly in ordersList object but in failure scenario , server ...
Loren's user avatar
  • 340
0 votes
2 answers
336 views

how to parse json array into postgresql array type?

Arrays seem really simple in PostgreSQL, but I am having trouble with JSON parsing into an array column type. The Json data contains a property with an array value: "problems": ["/...
Roland's user avatar
  • 5,066
0 votes
1 answer
57 views

Missing fields in json extraction

I am facing an issue with missing fields in json extraction. following is how my json looks like: { "orders": [ { "id": "f7w0KvbCMln8snSrNuPm5H2t2GSZY&...
Aiss's user avatar
  • 13
0 votes
1 answer
41 views

Parsing in Java don't work with JSONArray

why does my Code not work JSONArray dataObject = (JSONArray) parse.parse(String.valueOf(informationString)); It always give me the Error Code java.lang.ClassCastException: class org.json.simple....
Simone's user avatar
  • 61
0 votes
1 answer
89 views

Parse JSON array in PostgreSQL

I have a json where an array of data is stored. Data is stored on a key-value basis. I need to parse my data into two columns, where the keys will be in the first column, and the corresponding values ...
Artur Vartanyan's user avatar
1 vote
1 answer
123 views

How could I parse the json array in Kusto?

How could I parse the json array in Kusto? Here is what I tried: customEvents | where name == "myname" | project a = parse_json(customDimensions.Content) | extend b = a[0].Section; But as ...
manymanymore's user avatar
  • 2,940
0 votes
0 answers
57 views

Assign the key's name from a PHP array to a variable

I'm a bit new to PHP and programming in general so please bear with me if I don't explain with the correct phrasing. I am parsing an array into specific columns in order to later parse that data into ...
David Nixon's user avatar
-2 votes
2 answers
117 views

Parse JSON in java (custom)

I have a JSON array in the following format: [["1234","OS","01/31/2023","02/01/2023","First Day"],["1245","OS","01/23/2023&...
Haris Qureshi's user avatar

15 30 50 per page
1
2 3 4 5
39