Help for this page

Select Code to Download


  1. or download this
          "{'quantity' => 1,'name' => 'abc1' },{'quantity' => 2, 'name' =>
    + 'abc2'}"
    (or  "[{'quantity' => 1,'name' => 'abc1' },{'quantity' => 2, 'name' =>
    + 'abc2'}]")
    
  2. or download this
    (1)
    my $incomingdata = [{name => 'abc1',quantity => 1},{name => 'abc2',qua
    +ntity => 2}];
    ...
    (2)
    my $incomingdata = "[{name => 'abc1',quantity => 1},{name => 'abc2',qu
    +antity => 2}]";
    my @partofcookie = @$incomingdata;  # doesn't work!