I need to extract a property by using an extract text processor
I have a Replace Text
processor that has the property
"Input_String":
{"columnId":"19","value":"Helloworld","name":"Test"},
"Message_Type":"ADT_A01"
I am trying to extract 'Input_String' by using ExtractText processor with the following regular expression:
"Input_String"\s*:\s*\{[^}]*\}
but it returns:
"Input_String":{"columnId":"19","value":"Helloworld","name":"Test"},
However, I only need it to return its value
{"columnId":"19","value":"Helloworld","name":"Test"}
How can I get only the value of the property