I'm trying to convert data from csv to json . My csv input is split by (;) is there an easy way to do so?
the dataweave script i tried is throwing an error that says i have to first transform the data into an array using then concert to a json object.It's returning null instead of the values. INPUT: id;email;phone;Fname;Lname 154784;[email protected];0123456789;omd;lamia MY CODE: %dw…