作者gecer (gecer)
看板Visual_Basic
标题[VB6 ] [VBA] VB如何读取 .edf 的档案
时间Mon Dec 29 21:54:00 2014
小弟最近要整理一份副档名 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档?
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 111.255.0.234
※ 文章网址: http://webptt.com/cn.aspx?n=bbs/Visual_Basic/M.1419861243.A.F45.html
1F:→ ClubT: 试试看用chr(10)或是chr(13) 12/30 09:18