VB.NETでvbCrLf(改行)を取り除くためのメモ
Dim s As String = "hoge,piyo,foo,bar" + vbCrLf
' s = s.Replace(vbCrLf, "") これだと取り除けない
s = s.Replace(Chr(13), "").Replace(Chr(10), "")
Go to list of users who liked
More than 5 years have passed since last update.
VB.NETでvbCrLf(改行)を取り除くためのメモ
Dim s As String = "hoge,piyo,foo,bar" + vbCrLf
' s = s.Replace(vbCrLf, "") これだと取り除けない
s = s.Replace(Chr(13), "").Replace(Chr(10), "")
Register as a new user and use Qiita more conveniently
Go to list of users who liked