Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re^3: Printing first element of an array in worksheet

by davido (Cardinal)
on Dec 10, 2020 at 16:48 UTC ( [id://11124960]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    print ref($responsetextall[$i][$j]{set}{Client}{redirect_uris}), "\n";
    
  2. or download this
    ARRAY
    
  3. or download this
    use Data::Dumper;
    print Dumper $responsetextall[$i][$j]{set}{Client}{redirect_uris};
    
  4. or download this
    #!/usr/bin/env perl
    
    ...
    for my $i (0 .. $#$redi) {
        print $redi->[$i], "\n";
    }
    
  5. or download this
    ARRAY
    foo
    bar
    baz
    
  6. or download this
    for my $element (@$redi) {
        print "$element\n";
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (4)
As of 2024-04-19 13:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found