Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

String manipulation function in C#

Status
Not open for further replies.
Jan 11, 2007
51
Hi,

I'm building a Screen Scraper in C# using the WebResponse and WebRequest classes. I get the whole HTML page in one long big ass string.

Now, I need to find certain elements in that HTML. All the elements I need are encased in some kind of tag. For example:


<span id="username">Jenni Quick!</span>

So I think I should write a function that can find an element by the starting tag.


this is what I have so far, but I need help with searching the strings:

Code:
 private string fineElement(string findText, string origText)
    {
        int nIndexStart = 0;
        int nIndexEnd = 0;
        int nIndex = 0;

        string result = string.Empty;

        nIndexStart = origText.IndexOf(findText);
        
        result = // what do I do here?? :(

        return result;

}

The problem is how do I search from the start index to the end of the result, which is from the start index to the first instance of a "<" character directly after the start index.

THank you!!

jenni
 
Have a look into using the RegEx class and try creating (or having a look at some existing) regular expressions as they are much more suited to finding patterns.


____________________________________________________________

Need help finding an answer?

Try the Search Facility or read FAQ222-2244 on how to get better results.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top