是否有内置函数可以获取“ghi”?来自 BCL 中的 www.abc.com/def/ghi?

发布于 2024-12-01 02:52:15 字数 186 浏览 2 评论 0原文

BCL 中是否有内置函数可以从 www.abc.com/def/ghi 获取 ghi ?我知道创建一个执行此操作的小方法非常容易,但我想知道是否已经有一些东西可以为我处理它。

如果它也能让我得到 defabc 那将是一个额外的好处。

Is there a built-in function to get the ghi from www.abc.com/def/ghi in the BCL? I know it is dead easy to create a small method that does just that, but I wonder if there is something already that will take care of it for me.

If it could also get me def and abc that'd be a bonus.

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

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

发布评论

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

评论(2

独守阴晴ぅ圆缺 2024-12-08 02:52:15

您可以将 url 传递给 Uri 类构造函数 并检查 Segments 属性。或者,如果您拥有的字符串可能无效,您可以首先尝试使用 TryCreate< 来解析它/a> 方法。

You could pass the url to the Uri class constructor and inspect the Segments property. Or if the string you have could be invalid you could first try parsing it using the TryCreate method.

清晨说晚安 2024-12-08 02:52:15

对于.net,只需使用 String.Split

myString.Split('/')

and take the array-parts you need - I don't think that there is a build in function - it won't be much shorter than this anyway

for .net just use String.Split

myString.Split('/')

and take the array-parts you need - I don't think that there is a build in function - it won't be much shorter than this anyway

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