如何获取TXT某行内容?
test.txt内容如下:
abcd,3333
ccww,2222
zqww,0000
tttt,8888
如何查找到tttt,并获取tttt这一行内容 (tttt,8888)呢?
谢谢
[解决办法]
targetStr = "tttt " '要找的字符串
open app.path & "\test.txt " for input as #1
do while not eof(1)
line input #1,tempstr
if instr(1,tempstr,targetstr) <> 0 then
exit do
endif
tempstr= " "
loop
close#1
若程序执行完后,tempstr不为空,则找到,否则未找到。
tempstr中存放的就是符合条件的行