Splitting data into multiple arrays

I have data as below where two instance values are being stored but are separated by semicolon in the same field. Is there a way these values can be split into 2 arrays? 

 

Original data:

bravo_equipment_port: "11;2" bravo_equpment_label: "1;22" bravo_equipment_ru: "1;2" bravo_cabinet_number: "08-134 - 8kW -X;06-207 - 17kW -C" bravo_port_id: "1;2" bravo_switch_label: "1;2" bravo_connection_id: "11;2" alpha_equipment_port: "1;2" alpha_equipment_label: "1;2" alpha_equipment_ru: "1;2" alpha_cabinet_number: "08-011;07- 86kW -C" alpha_port_id: "1;2" alpha_switch_label: "1;2" alpha_connection_id: "1;22"

 

The result should be like..example of one array:  {11,1,1,08-134 - 8kW -X,1,1,11,1,1,1,08-011,1,1,1}

 

TIA :)

  Discussion posts and replies are publicly visible

Parents Reply Children
No Data