Help for this page

Select Code to Download


  1. or download this
    "teams":[
    {}, #team 
    {}  # another team
    ],
    
  2. or download this
    {
      "sports": [
    ...
        }
      ]
    }
    
  3. or download this
     for my $match (@{$parse_json->{sports}}) {
        my $teamname   = $match->{leagues}[0]{teams}[0]{team}{name};
        $Response_tmlist .= $teamname;
        print $Response_tmlist;
    }