09-02-2019 12:55 PM
Hi, I’m trying to split the value “ConfigValue” string in the following JSON :
[
{
PipelineID: 25
PipelineName: “CashValue_Main”
ConfigName:“CashValueDates”
ConfigValue:“1218, 1217”
}
]
Into a JSON document like this:
{
“YearEnd”: 1218
}
{
“YearEnd”: 1217*
}
What’s the best process that I can use to do this? JSON Splitter or Mapper, or a combination of both?
Any assistance would be greatly appreciated.
Thanks!
Solved! Go to Solution.
09-03-2019 02:42 AM
This is fairly easy, first use a mapper to split your ConfigValue field: $ConfigValue.split(“,”), and then use the JSONSplitter to split out into multiple documents:
I attach an export of the pipeline.
SplitField_2019_09_03.slp (8.1 KB)
09-03-2019 02:42 AM
This is fairly easy, first use a mapper to split your ConfigValue field: $ConfigValue.split(“,”), and then use the JSONSplitter to split out into multiple documents:
I attach an export of the pipeline.
SplitField_2019_09_03.slp (8.1 KB)
09-03-2019 04:56 AM
Thanks alot @cstewart ! It works as I needed!