vbs怎么实现检索一个文本里某个字符是否存在
我现在用qtp做测试,需要检查c盘下的log文件里是否存在某个字符,如果存在,则测试pass我想大概思路是
1.打开c:\log.txt
2.检索log.txt是否存在“字符”
3.if exist then
reporter.ReportEvent micPass,"pass","pass"
else
reporter.ReportEvent micPass,"failed","failed"
end if Set fso = CreateObject("Scripting.FileSystemObject")
Set F = fso.OpenTextFile("C:\log.txt",1)
aa = F.ReadAll
读取所有 ,然后 InStr 函数 原帖由 skyzhu 于 2010-5-5 10:56 发表 http://bbs.51testing.com/images/common/back.gif
Set fso = CreateObject("Scripting.FileSystemObject")
Set F = fso.OpenTextFile("C:\log.txt",1)
aa = F.ReadAll
读取所有 ,然后 InStr 函数
我就是没看懂instr这个函数
返回某字符串在另一字符串中第一次出现的位置。
能帮我写全了吗:( 啊,我好像实现了
L = instr(aa,"字符")
if (L=0) then
reporter.ReportEvent micPass,"failed","failed"
else
reporter.ReportEvent micPass,"pass","pass"
end if 大于0就找到了,最简单的写法就是
ifInStr(aa,"asdfg")> 0 then
找到了
end if '***********在指定的位置查找指定的字符或字符串*************
'***********logName:日志文件名 *************
'***********TextName:查找文件名 *************
'***********FindStr:查找字符吕 *************
'2010-5-8 qwen
sub Me_findStr(logName,TextName,FindStr)
set fso=createobject("scripting.filesystemobject")
If fso.FileExists(logName)=0 then '判断是否存在text.txt文件
'MsgBox
MsgText1="您指定的位置没有日志文件"&logName&"(确定后将在你指定的位置创建该日志文件)"
MsgCloseByTimeMsgText1,10,"提示"
fso.createtextfile(logName)
end if
If fso.FileExists(TextName)=0 then
'msgbox
MsgText2="您指定的位置没有文件 "&TextName&"(程序将会终止运行)"
MsgCloseByTimeMsgText2,10,"提示"
exit sub
end if
set file=fso.opentextfile(logName,8) '追加形式打开文件
set opfile=fso.opentextfile(TextName)'打开文件
do while opfile.atendofstream=false
line=opfile.readline '读取一行内容
if instr(line,FindStr)>0 then '判断是否包含查找字符
'msgbox now()&" 时找到字符串:"&Findstr&"(已写入日志文件"&logName&")"
MsgText3=now()&" 时找到字符串:"&Findstr&"(已写入日志文件"&logName&")"
MsgCloseByTimeMsgText3,10,"提示"
str=now()&" 时找到字符串:"&Findstr '加入缓冲区
end if
loop
file.writeline (str) '搜索到查找字符行写入text.txt文件
file.close()
opfile.close()
end sub
' Me_findstr "D:\log.txt","D:\1.txt","测试"
MsgCloseByTime是我自己定义的另外一个函数...修改下这个,就可以了.
页:
[1]