小弟最近要整理一份副檔名 edf 的資料
但是嘗試過
edf_file包含整個file 包含跳行
但是
string_array=split(edf_file,vbcrlf)
string_array=split(edf_file,vbnewline)
無法將file 分割
令外一般打開文字檔的寫法
open file as for input as #1
do until EOF(1)
line input ,string1
loop
結果 string1 也是整個edf_file包含跳行的內容
依此看來vbcrlf 或是 vbnewline無法將edf做line by line的分割
請問要如何讀取edf檔?