Read csv to 2D array |
Joe posted on Wednesday, October 22, 2008 2:47 AM
|
Sub EditInput()
Const ReadFile = "c:\temp\event.txt"
Const ForReading = 1, ForWriting = 2, _
ForAppending = 3
Dim Index As Integer
Dim data() As Variant
Set fs = CreateObject("Scripting.FileSystemObject")
Set fin = fs.OpenTextFile(ReadFile, _
ForReading, TristateFalse)
Index = 0
Do While fin.AtEndOfStream <> True
ReadData = fin.readline
ReDim Preserve data(0 To 1, 0 To Index)
Splitdata = Split(ReadData, ",")
data(0, Index) = Splitdata(0)
data(1, Index) = Splitdata(1)
Index = Index + 1
Loop
fin.Close
End Sub |
 |
|
Watch out for quoted values which may contain commas. |
Tim Williams posted on Thursday, October 23, 2008 1:54 AM
|
Watch out for quoted values which may contain commas.
Tim |
 |
|