My text from DB is like
title &vbCr& "1. conetnt01" &vbCr& " 1.1 sub" &vbCr& "2. content02" &vbCr& " 2.2 sub"
After replaced vbCr to vbCrLf
In docx
title
1. conetnt01
1.1 sub content
2. content02
2.2 sub
But my expect is
1. conetnt01
1.1 sub content
2. content02
2.2 sub
What can I do for this situation?
Finally my solution is below, but the empty in the first line is disappeared.
str = str.Replace(" ", " ")
str = str.Replace(vbLf, vbCrLf)