Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
String Search
Message
From
08/08/2002 02:39:59
 
 
To
07/08/2002 09:36:43
Fabian Belo
Independent Developer
Argentina
General information
Forum:
ASP.NET
Category:
Other
Title:
Miscellaneous
Thread ID:
00687015
Message ID:
00687395
Views:
14
This message has been marked as the solution to the initial question of the thread.
for that you have to read the text file, locate the search string and process it.
Dim fso, f
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.OpenTextFile("HTMLfile.txt", 1, True)
Do While f.AtEndOfLine <> True
SearchString =a.readline 'you can also use readAll ..depends upon the requirement
SearchChar = "Keyword"
MyPos = Instr(1, SearchString, SearchChar)
'so you will get the location of you string you may use String functions like LEFT/RIGHT/MID to get what you want
Best Luck..
Nilesh
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform