search within html file
As said HTML is text so you don't need to convert it to text. If you have simple search you can use methods in String class like IndexOf, but there are many options. You might want to use the HTML tags...
View Articlesearch within html file
The HTML is pure text. So there is no need to convert it to anything else.Just put the file into a string. Then you can search it with String.IndexOf() function. Noam B. Do not Forget to Vote as...
View Articlesearch within html file
Hi,Just plz use the DOS's find method to specify the html file and do ur searching:ProcessStartInfo info = new ProcessStartInfo("find \"html\"","c:\\name.html /n"); info.RedirectStandardOutput=true;...
View Articlesearch within html file
BH Hi,I'm trying to write a code that will search text within an html file. What is the best way to do that? Do i have to convert to txt file, or i can somehow search directly the html file? Please...
View Article