Json Parser Plugin - Forum

Forum Navigation
You need to log in to create posts and topics.

Json Parser Plugin

Hi,

This is Json Parser plugin to get field value of Json content
It's still not complete and if I do well I will complete the other functions

Regards
@farhad2008

Uploaded files:
  • You need to login to have access to uploads.
luishp, Vadim and 4 other users have reacted to this post.
luishpVadimimpactband4umarkusprdanitojosevdr95

Thank you @farhad2008!
I have had no time to check it but a JSON plugin seems very interesting to me.
Best regards.

 

Thank you @farhad2008 :-)

Json Parser is what I Need, specially CSV to Json:-)

 

Best regards!

Hi,

The following functions will be added to the plugin if requested

  • Insert Json
  • Update Json
  • Delete Json
  • Csv To Json
  • Json To Csv

And the plugin is commercially available

Best Regards

CN_Iceman has reacted to this post.
CN_Iceman
Quote from farhad2008 on February 19, 2020, 5:22 pm

Hi,

The following functions will be added to the plugin if requested

  • Insert Json
  • Update Json
  • Delete Json
  • Csv To Json
  • Json To Csv

And the plugin is commercially available

Best Regards

Yep, all this functions are important (at least for me!)

What will be price and do you have some link for download trial version?

Can I pay with PayPal ?

 

Regards!

This is great timing. I can definitely use something like this.

Does the input variable require [#34] as opposed to the actual quotation mark (")?
SetVar "[xx]" "{[#34]firstName[#34]:[#34]John[#34],[#34]lastName[#34]: [#34]Smith[#34]}"

A bit of a head scratcher here... I'm reading a JSON file to a variable.
FileRead "[PubDir]forecast.json" "All" "[forecast]"


S
o, the variable [forecast] has the actual quotation marks.
{"location":{"name":"Moss Point","region":"Mississippi","country":"USA","lat":30.43,"lon":-88.53,...

How do I replace all of the "s with [#34]s? StrReplace doesn't do it.
{[#34]location[#34]:{[#34]name[#34]:[#34]Moss Point[#34],[#34]region[#34]:[#34]Mississippi[#34],[#34]country[#34]:[#34]USA[#34],[#34]lat[#34]:30.43,[#34]lon[#34]:-88.53,...

The sample pub works fine but I'm ending up with an access violation error.

I answered my own question above about the quotes:

StrReplace "[forecast]" "[#34]" "[#91][#35]34[#93]" "[forecast]" ""

CDY@44 has reacted to this post.
CDY@44