I have 2 separate system, My first system will return a java script like bellow
var st=[]; var at=[]; var bt=[]; var ht=[]; ht[0]=['015',5,'33087443','23','50','22','x']; ht[1]=['018',5,'45648783','53','10','20','z'];
My second system will grab all this java script to process it and store into database , is that any parser or any way to allow me to separate all this different var st , at, bt, ht
into a list or dictionary ?
my expected outcome is list/dictionary : - (so that it easily for me to access the data)
List/Dictionary st = //All that array value List/Dictionary at = //All that array value List/Dictionary ht = //All that array value