Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Printing first element of an array in worksheet

by davido (Cardinal)
on Dec 09, 2020 at 18:06 UTC ( [id://11124896]=note: print w/replies, xml ) Need Help??

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]]);
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11124896]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (4)
As of 2024-04-25 09:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found