このヘルプトピックを参照して
各エントリの後にスペースを追加しないようにする方法がわかりません
例えば
ジョン・メリー・ジョー
それ以外の
John_ Mary_ Joe_
エントリを書くだけで取得するにはどうすればよいですか
問題のコード
Dim sb as new StringBuilder()
For Each item As Object In cmbworld.Items
'Dim test As String
'test = item
sb.AppendFormat("{0} {1}", item, Environment.NewLine)
Next
Dim FILE_NAME As String = "D:\Documents\test.txt"
If System.IO.File.Exists(FILE_NAME) = True Then
Dim objWriter As New System.IO.StreamWriter(FILE_NAME)
objWriter.Write(sb.ToString()) 'Use the stringbuilder here
objWriter.WriteLine()
objWriter.Close()
MsgBox("Text written to file")
Else
MsgBox("File Does Not Exist")
End If