Help for this page

Select Code to Download


  1. or download this
    @redi = $responsetextall[$i][$j]{set}{Client}{redirect_uris}
    
  2. or download this
    @redi = (
        [....],
    );
    
  3. or download this
    @redi = @{$responsetextall[$i][$j]{set}{Client}{redirect_uris}}
    
  4. or download this
    $redi = $responsetextall[$i][$j]{set}{Client}{redirect_uris}
    # and then...
    for my $i (0..$#$redi) {
        $worksheet->write($r, 6, [$redi->[$i]]);
    }