Private Sub Command1_Click()
Dim fuzhi As Boolean
fuzhi = False
Open "E:\33.txt" For Input As #1
Open "E:\11.txt" For Output As #2
Do
Line Input #1, a
If a = "[@mainzb] " Then Exit Do
If fuzhi = True Then b = b & a
If a = "[@main]" Then fuzhi = True
Loop
For i = 1 To Len(b)
c = Mid(b, i, 1)
If Asc(c) < 0 Or Asc(c) = 63 Or Asc(c) = 32 Or Asc(c) = 10 Then
Print #2, c;
ElseIf Asc(c) = 92 Then
Print #2,
End If
Next
Close
Close
End Sub