In Word 2013, using Search and Replace with or without wildcards enabled, I want to replace each occurrence of Hello
at the beginning of a paragraph for Bye
.
The search pattern:
^pHello
only works for non-first line and does not match Hello
at the beginning of the very first paragraph of the document.
How can I match Hello
at the beginning of the document? In Perl this would be done as s/^Hello/Bye/
.