sunday is sunday
monday
tuesday
wendesday
sunday
thursday
friday
saturday
sunday
sunday
how to count no of sunday in the text file from vb? Answer
me asap
Answers were Sorted based on User's Feedback
Answer / siva
text="sunday is sunday monday tuesday wendesday sunday
thursday friday saturday sunday sunday how to count no of
sunday"
coun=ubound(split(text,"sunday"))
msgbox coun
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / siva
Set fso=createobject("scripting.filesystemobject")
Set forread=fso.OpenTextFile("path\test.txt",1)
text=forread.ReadAll
coun=ubound(split(text,"sunday"))
msgbox coun
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / eswar
cnt =0
Set fso = CreateObject("scripting.filesystemobject")
Set f = fso.opentextfile("D:\test.txt",1)
While f.atendofstream<>true
x = f.readline
y = Split(x," ")
For i=0 to ubound(y)
If y(i) = "sunday" Then
cnt=cnt+1
End If
Next
Wend
MsgBox cnt
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the purpose of on error resume next statement?
what is the features of visual basic?
how to write codings in QTP using vb script. please help me. i am new to QTP. it is easy or very much tough. please tell me
What is the purpose of drive object of scripting.filesystemobject class in vbscript?
how to retrieve native property value in runtime?
What are the 2 ways in which a variable can be declared in the vbscript language?
how to acces the remote mechine using vb cript(QTP)
Explain about constants in vb script?
how to set one column as primary key in QTP and fetch values accordingly
How to remove the spaces in a string Ex: "Welcome to QTPWorld" ?
How to Import data from a file (file is on the desktop) to the data table
What is difference between Active screen and movie screen recorder in QTP 9.2?