I wrote a piece of code in VB that replaces certain characters in a Word document with a paragraph-ending.
With objWord.Documents(strMergeNaam)
With .Content.Find
...
.Execute "[bnrnl]", True, False, False, False, , , , , "^p", wdReplaceAll
...
As you see, I use "^p" for...