It have source code that contains sections like this:
<pre> text
</pre>
long long text
<pre> text
</pre>
long long text
I have to find this entry
<pre> text
</pre>
in JEdit and replace it with space. (I read the regex rules in the JEdit documentation.)
My expression is:
<pre>([\.\n]*?)</pre>
But it couldn't find the entry.
What expression should be correct?