Lets say I want to replace the text:
"Text to Replace"
with
"Hello
World"
World"
Where that’s a <w:br/> between Hello and World in the docx. How would I go about that?
d.Range.Replace(textToReplace, replaceWith, true, false) ends up spitting out
Hello?World
if I include a newline character in it.