在C#中获取两个字符串(HTML)之间的文本

时间:2015-08-11 03:51:42

标签: c# html-parsing

我正在尝试解析网站的HTML,然后在两个字符串之间获取文本。

我写了一个小函数来获取两个字符串之间的文本。

public string getBetween(string strSource, string strStart, string strEnd)
{
    int Start, End;
    if (strSource.Contains(strStart) && strSource.Contains(strEnd))
    {
        Start = strSource.IndexOf(strStart, 0) + strStart.Length;
        End = strSource.IndexOf(strEnd, Start);
        return strSource.Substring(Start, End - Start);
    }
    else
    {
        return string.Empty;
    }
}

我将HTML存储在名为“html”的字符串中。以下是我要解析的HTML的一部分:

<div class="info">
                                    <div class="content">
                                        <div class="address">
                                        <h3>Andrew V. Kenny</h3>
                                        <div class="adr">
                                        67 Romines Mill Road<br/>Dallas, TX 75204                                        </div>
                                    </div>

<p>Curious what <strong>Andrew</strong> means? <a href="http://www.babysfirstdomain.com/meaning/boy/andrew">Click here to find out!</a></p>

所以,我使用我的功能。

    string m2 = getBetween(html, "<div class=\"address\">", "<p>Curious what");
    string fullName = getBetween(m2, "<h3>", "</h3>");
    string fullAddress = getBetween(m2, "<div class=\"adr\">", "<br/>");
    string city = getBetween(m2, "<br/>", "</div>");

全名的输出正常,但其他人因某种原因在其中有额外的空格。我尝试了各种方法来避免它们(比如从源代码中完全复制空格并在我的函数中添加它们)但是它没有用。

我得到这样的输出:

fullName = "Andrew V. Kenny"
fullAddress = "                                            67 Romines Mill Road"
city = "Dallas, TX 75204                                        "

城市和地址都有空间我不知道如何避免。

1 个答案:

答案 0 :(得分:3)

修剪字符串,不必要的空格将消失:

fullName = fullName.Trim ();
fullAddress = fullAddress.Trim ();
city = city.Trim ();