Guest User

Untitled

a guest
Jan 23rd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. Function ConvertLineEnding(Text As String, LineEnding As String) As String
  2. ConvertLineEnding = Replace(Replace(Replace(Text, vbCrLf, vbLf), vbCr, vbLf), vbLf, LineEnding)
  3. End Function
Add Comment
Please, Sign In to add comment