NAME
JSON::Parser::Regexp - Json parser
SYNOPSIS
use utf8;
use JSON::Parser::Regexp;
my $json = JSON::Parser::Regexp->new();
my $hash = $json->decode('{ "false" : false, "null" : null, "true" : true, "foo" : [3, 4, ౮], "buz": "a string ఈ వారపు వ్యాసం with spaces", "more": {"3" : [8, 9]} , "1" : 41}');
print $hash->{"more"}->{3}->[0];
AUTHOR
Rajkumar Reddy, mesg.raj@outlook.com
COPYRIGHT AND LICENSE
Copyright (C) 2019 by Rajkumar Reddy
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.26.1 or, at your option, any later version of Perl 5 you may have available.