All pastes #1881606 Raw Edit

Not working parser

public text v1 · immutable
#1881606 ·published 2010-06-12 09:58 UTC
rendered paste body
Data to parse:
----------
{"sentences":[{"trans":"text \"quotedtext\" othertext","orig":"tekst \"wcudzyslowach\" innytekst","translit":""}],"src":"en"}
----------



Perl code that doesn't work:
----------
if(@trans = $translate -> content =~ m/"trans":".*+(?<!\\)"/ig){
	foreach (@trans){
		$_ =~ m/"trans":"(.*+)(?<!\\)"/i;
		$translated .= $1;
	}
}
----------