CString Manupulation

0
Good Morning  I just wanted to ask whether a string can be converted into object in mendix.  I’m receiving an String from an http request and I want to convert that string into an object , basically the string contains an nested object inside the “ {}”. So I want the string to be converted into an object.  If this can be achieved can anyone say how to achieve it.    Thanks in advance.   
asked
1 answers
0

You can create a JSON structure where you paste the string that you have. Then you create an import mapping using the JSON structure as Schema source. This import mapping can then be used in a microflow to parse the string to an object. Read more about JSON structures here: https://docs.mendix.com/refguide8/json-structures. And more about import mappings here: https://docs.mendix.com/refguide8/mapping-documents

answered