需要删除额外线条的视觉基本功能

时间:2017-09-13 11:44:53

标签: vba

我需要删除额外线条的visual basic函数。和截图一样。 enter image description here

2 个答案:

答案 0 :(得分:0)

Dim s As String
s = "That long string..."
While (s <> s.Replace(VbNewLine + VbNewLine, VbNewLine)
s = s.Replace(VbNewLine + VbNewLine, VbNewLine);
Loop

答案 1 :(得分:0)

不太清楚你在问什么。

Public Function RemoveEmptyLines(ByVal Value As String) As String
    RemoveEmptyLines = Replace(Value, vbLf & vbCr, vbNullString)
End Function