Hi All,
I have an argument which takes in a JSON string as a value. I have then written a converter which will parse this string and return a populated custom type. The problem that i am facing is that the Json object will always have a comma as a separator for its fields.
To take an example:
Json String value: [{key1:value, key2:value2}, {key1:value3, key2:value4}]
The problem is that the string that converter gets as value in the convert method argument is "[{key:value" rest is chopped off. Now i have tried escaping the comma but that does not work. I wonder why that has been done. It seriously restricts the usage of custom types and converters.
I would be glad if someone could suggest an alternative
Best Regards,
Madhav