Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to find LF characters that appear between double quotes. The text file I'm searching has field-value pairs in this format

    msgid "text 1"
    msgstr "text 2"

I'm trying to find if LF characters appear within text 1 or text 2 strings. I have tried "[^"\r\n]*\n[^"\r\n]*" but it just picks up " msgstr "

share|improve this question
1  
what regex flavor are you using? – agent-j Oct 12 '11 at 14:33

1 Answer

up vote 0 down vote accepted

This regex :

if ($subject =~ m/"([^"\r\n]*?[\r\n]+[^"\r\n]*?)"\s*$/m) {
    $result = $1;
}

When applied to these strings :

msgid "text 1 " 
msgstr "text 2"
msgstr "something with new 
line"

Will produce this output :

something with new 
line
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.