如何将给定数字左侧的零点放置到最多6位数(包括给定数字)

时间:2010-06-14 00:04:44

标签: c# .net string

我有这种方法接收ID号并根据该ID下载HTML网站。

通常,IMDB链接如下:

http://www.imdb.com/title/tt0892791/
http://www.imdb.com/title/tt1226229/
http://www.imdb.com/title/tt0000429/

它们都跟随'tt'然后是7位数字,缺少数字变成零以填充左侧空格。

如何使用C#完成此操作?我有点难过。

这是我的方法:

/// <summary>
/// Find a movie page using its precise IMDB id.
/// </summary>
/// <param name="id">IMDB Movie ID</param>
/// <returns>Returns an HtmlDocument with the source code included.</returns>
public HtmlDocument ByID(string id)
{
    string url = String.Format("http://www.imdb.com/title/tt{0}/", id);            
    HtmlDocument page = downloader.Load(url);
    return page;
}

非常感谢你的时间,如果你有兴趣帮忙,你可以在这里查看TheFreeIMDB的完整源代码: http://thefreeimdb.codeplex.com/

1 个答案:

答案 0 :(得分:8)

由于id是示例中的字符串,因此请使用id.PadLeft(length, '0'),其中length是您想要的总长度(在本例中为7)。