查找匹配的单词 C#
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
怎么样;
(如果没有终止
/
,这将返回2008
)How about;
(This would return
2008
were there no terminating/
)使用 URI 类的 Segments 属性
Use the Segments property of the URI class
对于该特定字符串,我将使用 String.Substring(int offset, int length) 方法。
For that specific string I'd use the
String.Substring(int offset, int length)
method.修剪最后一个 /,然后找到现在最后一个 / 的索引,并从找到的 idnex 到末尾创建一个子字符串。
Trim the last /, then find the index of the now last / and make a substring from this found idnex to the end.