Multiline regex pattern
June 5th, 2010
6 comments
Task: Parse a file and capture whatever text appears between a pair of double quotes like the following:
“Catch me”
Not so difficult, you could use the following regex:
“.*”
This will catch any character within double quotes in a group
¿any? Read more…
