我有这个字符串:
'{"file_type":"/video/2012/09/10/prn-exceo.jpg"}'
我想要:
'{file_type:/video/2012/09/10/prn-exceo.jpg}'
尝试过:
我做错了什么
$str=~m/\"(.+)\"/
?$str=~ s/"//g;
更新
一个 json 调用给了我这个字符串:
'{"file_type":"/video/2012/09/10/prn-exceo.jpg"}'
我试图prn-exceo.jpg
像这样返回:
my $json = JSON->new->allow_nonref->encode('prn-exceo.jpg');
但我有一个parsererror