Hi there.
I've got this problem which is realy killing me, i've spent several hours trying to make a regexp which does the following.
take a var that contains this line :
Varenr="100043" PrdGruppeLev1ID="26" PrdGruppeLev2ID="65" KundePris="293.01998901399998" TilgjForSalg="23.00" ProduktStatusID="1" Bekreftet="0" AnkomstDato="2001-04-04" PrdKjopEnhAntall="1.0" ProduktDesc1="NN Lagringsmedia Tape 14GB HP Colorado" ProduktDesc2="Backup"
splitting it up into and array looking something like this :
array[0][0] = "Varenr";
array[0][1] = "100043";
array[1][0] = "ProduktStatusID";
array[1][1] = "26";
Anyone got an idea on how to do this?? I've read the manual, even tried looking an a perl-book but no luck :-(