Group
Extension

Matches 2

RINO-Client ( S/SA/SAXJAZMAN/cif/RINO-Client-0.03.tar.gz, SAXJAZMAN, 2011; MetaCPAN )
RINO-Client/lib/RINO/Client/Plugin/Json.pm ( view source; MetaCPAN )
package RINO::Client::Plugin::Json;

use strict;
require JSON;

sub write_out {
    my $class = shift;
    my $ref = shift;
    my @array = @{$ref};
    @array = splice(@array,1,$#array);

    ## fix 
 $a->{$k};
            next unless($x);
            my $h = eval { JSON::from_json($x) };
            next if($@);
            $a->{$k} = $h;
        }
    }

    return JSON::to_json(\@array);
}

1;
RINO-Client ( S/SA/SAXJAZMAN/cif/RINO-Client-0.03.tar.gz, SAXJAZMAN, 2011; MetaCPAN )
RINO-Client/lib/RINO/Client.pm ( view source; MetaCPAN )
 have it's own position in the CSV
            ## all others will be combined into paired values (JSON-like) and placed in one position in the CSV
            my $destination = '';
            my $add

 $ rino -f /tmp/rino.xml -p table
 $ rino -f /tmp/rino.xml -p csv
 $ cat /tmp/rino.xml | rino -p json

 # using the lib
 use RINO::Client;

 my @input;
 while(<STDIN>){
    push(@input,$_);
 }
 my $i
_xml);
 print $rino->write_out('table');
 print $rino->write_out('csv');
 print $rino->write_out('json');

 my $simple_hash = $rino->to_simple();
 my $complex_hash = $rino->to_hash();

=head1 SEE ALSO

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.