I wanted to use word because that is what is on everyone desktop. This will not be for my use but our data clerks.
Notepad and notepad++ dont recognize page breaks. Word does. I am up for suggestions. I did try mono space fonts. Doesn't fix it
The text file come from an asa/400 with old line printer formatting.
The VBscript I made removes the line printer formatting:
Set fso = CreateObject("Scripting.FileSystemObject")
Set regEx = New RegExp
'find tab spaces.
regEx.Pattern = "^(' ')"
regEx.Global = True
regEx.MultiLine = True
txtFile = regEx.Replace(fs

penTextFile(WScript.Arguments(0)).ReadAll, vbTAB)
'Find all asa line feeds
regEx.Pattern = "^(' ')"
regEx.Global = True
regEx.MultiLine = True
txtFile = regEx.Replace(fs

penTextFile(WScript.Arguments(0)).ReadAll, vbLF)
fs

penTextFile(WScript.Arguments(0), 2, True).Write txtFile
' Find all asa carriage returns
regEx.Pattern = "^(0)"
regEx.Global = True
regEx.MultiLine = True
txtFile = regEx.Replace(fs

penTextFile(WScript.Arguments(0)).ReadAll, vbCRLF & " ")
fs

penTextFile(WScript.Arguments(0), 2, True).Write txtFile
'Find all ASA Page Breaks
regEx.Pattern = "^(1)"
regEx.Global = True
regEx.MultiLine = True
txtFile = regEx.Replace(fs

penTextFile(WScript.Arguments(0)).ReadAll, "")
fs

penTextFile(WScript.Arguments(0), 2, True).Write txtFile
Here are screenshots of what happens.
Good Notepad
Bad word