H
Hans Kamp
Is it possible to write a function like the following:
string ReadURL(string URL)
{
....
}
The purpose is that it reads the URL (determined by the parameter) and
returns the string in which there is HTML-code, for example:
string websiteContents;
websiteContents = ReadURL("http://www.microsoft.com");
processHTMLCode(websiteContents);
....
Is there also functions that can parse HTML-code in a given string?
Hans Kamp.
string ReadURL(string URL)
{
....
}
The purpose is that it reads the URL (determined by the parameter) and
returns the string in which there is HTML-code, for example:
string websiteContents;
websiteContents = ReadURL("http://www.microsoft.com");
processHTMLCode(websiteContents);
....
Is there also functions that can parse HTML-code in a given string?
Hans Kamp.