VB批量替换文本字符
Private Sub Command1_Click()
Open App.Path & "\abc.txt" For Binary As #1
a = Input(LOF(1), 1)
Close #1
a = Replace(a, "标记一", Text1.Text)
a = Replace(a, "标记二", Text2.Text)
a = Replace(a, "标记三", Text3.Text)
Open App.Path & "\abc.txt" For Output As #2
Print #2, a
Close #2
End Sub
浙公网安备 33010602011771号