如何在VB中獲取和輸出,用逗號分隔,文件的每一行除了最後一行?
這裏是我的代碼:VB爲文件中的每一行,把行放在一個文本框中
Dim ofd As New OpenFileDialog
ofd.FilterIndex = 1
If ofd.ShowDialog = Windows.Forms.DialogResult.OK Then
TextBox13.Text = ofd.FileName
Else : Exit Sub
End If
For Each line In IO.File.ReadLines(TextBox13.Text)
TextBox5.Text = line + ", "
Next
End If
一個例子:在textbox5
line1
blabla
asdfghj
輸出:
line1, blabla, asdfghj
,而不是
line1, blabla, asdfghj,
'Dim Lines = File.ReadLines(...)''''TextBox5.Text = String.Join(「,」,Lines)' – Plutonix
@merdolodafoca當一個帖子回答你的問題時,你可以[標記爲已接受](http://meta.stackexchange.com/a/5235/308647)。 –