I reallly should know how to do this by now, but --
in emacs how do you do a query-replace-regexp that will match across multiple lines?
as a trivial example I'd want <p>\(.*?\)</p> to match
<p>foo
bar
</p>
|
|
I reallly should know how to do this by now, but -- in emacs how do you do a query-replace-regexp that will match across multiple lines? as a trivial example I'd want
|
||||||||
|
|
|
Try character classes. As long as you're using only ASCII character set, you can use |
||
|
|
|
is your friend. And it led me to this regular expression:
which is the string version of
And that works for me when I do re-search-forward, but not when I do Now, when doing a Note, the above regexp will match until the last |
||||||
|
|
|
In Perl Regular Expressions it would be using the s flag: |
||
|
|