如何使用IndexOf和Substring从字符串解析文件名?

时间:2015-01-06 02:20:19

标签: c# .net string substring indexof

private void ParseFilesNames()
{
    using (WebClient client = new WebClient())
    {
        try
        {
            for (int i = 0; i < 15; i++)
            {
                string urltoparse = "mysite.com/gallery/albums/from_old_gallery/" + i;
                string s = client.DownloadString(urltoparse);
                int index = -1;
                while (true)
                {
                    string firstTag = "HREF=";
                    string secondtag = ">";
                    index = s.IndexOf(firstTag, 0);
                    int endIndex = s.IndexOf(secondtag, index);
                    if (index < 0)
                    {
                        break;
                    }
                    else
                    {
                        string filename = s.Substring(index + firstTag.Length, endIndex - index - firstTag.Length);
                    }
                }
            }
        }
        catch (Exception err)
        {
        }
    }
}

问题在于Substring。 index + firstTag.Length,endIndex - index - firstTag.Length 这是错误的。

我需要得到的是:HREF="">

之间的字符串

整个字符串如下所示:HREF="myimage.jpg"> 我只需要获得“myimage.jpg”

有时它可能是“myimage465454.jpg”所以无论如何我只需要获取文件名。只有“myimage465454.jpg”。

我应该在子字符串中更改什么?

2 个答案:

答案 0 :(得分:3)

如果你确定你的字符串总是&lt; HREF =&#34; yourpath&#34; &GT; ,只需应用以下内容:

string yourInitialString = @"HREF="myimage.jpg"";
string parsedString = yourInitialString.Replace(@"<HREF="").Replace(@"">");

如果您需要解析HTML链接href值,最好的选择是使用HtmlAgilityPack库。

使用Html Agility Pack解决方案:

HtmlWeb htmlWeb = new HtmlWeb();
HtmlAgilityPack.HtmlDocument doc =  htmlWeb.Load(Url);

foreach (HtmlNode link in doc.DocumentNode.SelectNodes("//a[@href]"))
{
    // Get the value of the HREF attribute
    string hrefValue = link.GetAttributeValue( "href", string.Empty );
}

要安装HtmlAgilityPack,请在程序包管理器控制台中运行以下命令:

 PM> Install-Package HtmlAgilityPack

希望它有所帮助。

答案 1 :(得分:0)

试试这个:

String filename = input.split("=")[1].replace("\"","").replace(">","");