vb中如何根据关键字读取txt 中包含关键字的那一行

[复制链接]
查看11 | 回复1 | 2012-3-4 21:53:44 | 显示全部楼层 |阅读模式
Option ExplicitDim arrPrivate Sub Command1_Click()
Dim i As Long
For i = 0 To UBound(arr)
If InStr(arr(i), Text1) = 1 Then '查到就退出,可以装入数组
MsgBox arr(i)
Exit For
End If
Next
If i = UBound(arr) + 1 Then MsgBox "未查到:" & Text1End SubPrivate Sub Form_Load()
If Dir("c:\1.t...
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行