是否有相当于 C# / .NET 的 Perl 的 URI.pm ?

发布于 2024-07-11 12:57:40 字数 373 浏览 4 评论 0原文

.NET 具有 Uri 类

Perl 有其 URI 模块

主要区别在于,URI.pm 允许您以哈希形式检索查询字符串组件,并将哈希设置到 URI 中以使用查询参数构造一个漂亮的 URI。 我在 .NET 方面没有看到类似的情况。 是否有一些我不知道的隐藏课程?

.NET has the Uri class.

Perl has its URI module.

The major difference is that URI.pm allows you to retrieve the query string components as a hash, and set a hash into the URI to construct a nice URI with query arguments. I don't see anything like that on the .NET side. Is there some hidden class I don't know about?

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

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

发布评论

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

评论(2

只为守护你 2024-07-18 12:57:40

另一个实用程序提供了解析查询字符串的功能:System.Web。 HttpUtility.ParseQueryString() - 将查询字符串解析为 NameValueCollection。

HttpUtility 文档 中的示例:

String querystring;
...
// Parse the query string variables into a NameValueCollection.
NameValueCollection qscoll = HttpUtility.ParseQueryString(querystring);

// Iterate through the collection.
StringBuilder sb = new StringBuilder();
foreach (String s in qscoll.AllKeys)
{
    sb.Append(s + " - " + qscoll[s] + "<br />");
}

Another utility provides for parsing query strings: System.Web.HttpUtility.ParseQueryString() - Parses a query string into a NameValueCollection.

An example from HttpUtility doc:

String querystring;
...
// Parse the query string variables into a NameValueCollection.
NameValueCollection qscoll = HttpUtility.ParseQueryString(querystring);

// Iterate through the collection.
StringBuilder sb = new StringBuilder();
foreach (String s in qscoll.AllKeys)
{
    sb.Append(s + " - " + qscoll[s] + "<br />");
}
誰認得朕 2024-07-18 12:57:40

答案显然是“不”。 .NET 框架中没有内置类可以采用名称和值的集合并生成查询字符串,或者允许您直接修改 URI 的查询字符串组件,就像它是一个集合一样。

The answer, apparently is "No". There is no built-in class in the .NET framework that can take a collection of names and values and produce a query string or allow you to directly modify the query string component of a URI as if it were a collection.

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