我需要在 vb net 中组合两个多行文本框,如下所示:
textbox1:
a
b
c
d
textbox2:
1
2
3
4
textbox3:
a1
b2
c3
d4
只是一个带有三个文本框的表单。还有一个按钮,用于在 t3 中合并/组合/连接来自 t1 和 t2 的每个值。
我的尝试之一:
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) 处理 Button3.Click
For Each line In TextBox1.Lines
For Each linex In TextBox2.Lines
Me.TextBox3.Text += line & linex
Me.TextBox3.Text += Environment.NewLine
Next
Next
End Sub
但是由两个(a1,a2,a3,b1,b2,b3 ...)采用的行(lines = linex)的结果组合