Hello I'm really new to Azure Data Factory. My input JSON is this:
{
"name": "Ranjana Sinha",
"schools": [{"schoolName": "ABC Institute",
"schoolAddress": "123, XYZ Road"},
{"schoolName": "AFG Primary",
"schoolAddress": "1002, XYZ Road"}]
}
Here I want to find the "XYZ " and replace the following "Road" with "Avenue". I have created the pipeline and I can successfully copy the data from source to sink. Can someone direct me to the functions I should be using to modify the data in the process? Any documentation or any help is greatly appreciated.