如何在 C# 中弹出 url 段?
我使用它来获取其中一个 url 段,
var hash = context.Request.Url.Segments[1];
但我需要一种方法,允许我使用 .Pop() 关闭 url 的最后一段。 Pop 似乎不是 Segments 可用的方法..知道如何实现这个吗?
I was using this to obtain one of the url segments,
var hash = context.Request.Url.Segments[1];
but I need a method that would allow me to .Pop() the final segment off of the url. Pop doesn't seem to be a method available to Segments.. any idea how to implement this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于出于某种原因,您似乎对 Pop 感兴趣:
但您也可以轻松使用:
Since you seem to have your heart set on
Pop
for some reason:But you could just as easily use:
这样做:
这可能会让你开始。
do this:
This might get you started.