Sub 処理テスト()
Open ThisWorkbook.Path & "\新しいテキスト ドキュメント.txt" For Input As #1
Do Until EOF(1) = True
Debug.Print EOF(1)
Line Input #1, 文字列変数
Debug.Print 文字列変数
Loop
Debug.Print EOF(1)
Close #1
End Sub
'テキストデータから1文字ずつ全て取り出す
Open ThisWorkbook.Path & "\新しいテキスト ドキュメント.txt" For Input As #1
Do Until EOF(1) = True
文字列変数 = Input(1, 1)
Debug.Print 文字列変数
Loop
Close #1
Sub 処理テスト()
Open ThisWorkbook.Path & "\新しいテキスト ドキュメント.txt" For Input As #1
Do Until EOF(1) = True
Line Input #1, 文字列変数
Debug.Print 文字列変数
Loop
Close #1
End Sub