On Fri, 28 Apr 2006 16:33:58 -0600, SteveSch wrote:
> Hello,
>
> I need to search and replace paragraph markers using ooo. In Win it was
> just ^p.
>
> I googled and found (\n, \$, $). I also tried them with quote marks. None
> of them seemed to work.
>
> Can someone please tell me how to search and replace these items?
>
> I'm using ooo 1.1.4 on one machine and ooo 2.0 on another.
>
> I have a file that I need to replace the characters ^p| with ^p. I can't
> just replace the | as there are thousands in this file.
>
I have just tested this on OO 2 and I was able to get it to find paragraph
marks by:
Tick the "Regular Expressions" box - you may have to click on the "more
options" button to see this.
use $ to find the end of line
Although from what I understand of your question, you really want to find
a pipe character | at the beginning of a line. In that case you would
want your criteria to be:
^|
(^ is the start of line marker)
Hope that helps,
David
> Thanks in advance.
> Steve