http://www.perlmonks.org?node_id=989152


in reply to Re: Regex in json: escaping forward slash
in thread Regex in json: escaping forward slash

#!/usr/bin/env perl use strict; use JSON; use Data::Dumper; my $contents = `cat progconfig.json`; my $config = JSON->new->decode($contents); print Dumper($config);