gpt4 book ai didi

c# - 如何从 URI 中删除 PROTOCOL

转载 作者:IT王子 更新时间:2023-10-29 04:13:31 26 4
gpt4 key购买 nike

如何从 URI 中删除协议(protocol)?即删除 HTTP

最佳答案

您可以像这样使用 System.Uri 类:

System.Uri uri = new Uri("http://stackoverflow.com/search?q=something");
string uriWithoutScheme = uri.Host + uri.PathAndQuery + uri.Fragment;

这会给你 stackoverflow.com/search?q=something

编辑:这也适用于about:blank :-)

关于c# - 如何从 URI 中删除 PROTOCOL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4517240/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com