查找匹配的单词 C#

发布于 2024-11-09 03:58:29 字数 189 浏览 0 评论 0原文

http://www.vkeong.com/2008/food-drink/nasi-lemak-wai-sik-kai-kepong-baru/

您好,如何使用 C# 从此超链接获取 'nasi-lemak-wai-sik-kai-kepong-baru'

谢谢。

http://www.vkeong.com/2008/food-drink/nasi-lemak-wai-sik-kai-kepong-baru/

Hi, how to get the 'nasi-lemak-wai-sik-kai-kepong-baru' from this hyperlink using C#?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

枯寂 2024-11-16 03:58:29

怎么样;

var uri = new System.Uri("http://www.vkeong.com/2008/food-drink/nasi-lemak-wai-sik-kai-kepong-baru/");
string dir = new System.IO.FileInfo(uri.LocalPath).Directory.Name;

(如果没有终止/,这将返回2008

How about;

var uri = new System.Uri("http://www.vkeong.com/2008/food-drink/nasi-lemak-wai-sik-kai-kepong-baru/");
string dir = new System.IO.FileInfo(uri.LocalPath).Directory.Name;

(This would return 2008 were there no terminating /)

丶视觉 2024-11-16 03:58:29

使用 URI 类的 Segments 属性

URI uri = new URI("http://www.example.com/alpha/beta/gamma");

foreach(string s in uri.Segments)
{
  Console.Writeline(s);
}

Use the Segments property of the URI class

URI uri = new URI("http://www.example.com/alpha/beta/gamma");

foreach(string s in uri.Segments)
{
  Console.Writeline(s);
}

对于该特定字符串,我将使用 String.Substring(int offset, int length) 方法。

url.Substring(38, 14);

For that specific string I'd use the String.Substring(int offset, int length) method.

url.Substring(38, 14);
2024-11-16 03:58:29

修剪最后一个 /,然后找到现在最后一个 / 的索引,并从找到的 idnex 到末尾创建一个子字符串。

Trim the last /, then find the index of the now last / and make a substring from this found idnex to the end.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文