美文网首页
按键精灵逐行读取文件

按键精灵逐行读取文件

作者: 唐植超 | 来源:发表于2021-09-29 10:31 被阅读0次
    content = Plugin.File.ReadFileEx("D:\data.txt")
    lines = Split(content, "|")
    If UBound(lines)>=0 Then 
        For i=0 To UBound(lines)
            TracePrint "第 " & i + 1 & " 行文本内容为:" &  lines(i) 
        Next
    End If
    
    

    相关文章

      网友评论

          本文标题:按键精灵逐行读取文件

          本文链接:https://www.haomeiwen.com/subject/nnxjnltx.html