'''
Dim app As New MSWord.Application
try
Dim doc = app.Documents.Open("D:\问题\测试文本整理\测试.doc")
Dim str As String
Dim count = Doc.Characters.Count
Dim rng As MSWord.Range = Doc.Range(Start:=0, End:=count)
str = rng.text
str = str.replace("。" & chr(13),"。" & vbcrlf)
str = str.replace(chr(13),"")
Output.Show(str )
app.Quit
catch ex As exception
msgbox(ex.message)
app.Quit
End try