in reply to Pattern Matching Question
$_ = '"Hello \" world!" I am Roger'; ($str) = /("(?:\\"|.)*?")/x; print "$str\n"; [download]