将 URI 分解为其组成部分的正确术语是什么?

发布于 2024-10-29 21:28:56 字数 188 浏览 0 评论 0原文

假设我们有一个字符串“http://www.example.com/feed”。我将此字符串分成三部分,以便与 Apache 的 URI 类一起使用: 1.“http” 2.“www.example.com” 3.“/feed”

对于将 URI 分解为其组成部分的过程,是否有合适的术语?

Suppose we have a string "http://www.example.com/feed". I am breaking this string up into three pieces for use with Apache's URI class:
1. "http"
2. "www.example.com"
3. "/feed"

Is there a proper term for this process of breaking down a URI into its component pieces?

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

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

发布评论

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

评论(3

转瞬即逝 2024-11-05 21:28:56

可以将 uri 解析为其组成部分:

以下是 RFC3986 中的两个示例:

     foo://example.com:8042/over/there?name=ferret#nose
     \_/   \______________/\_________/ \_________/ \__/
      |           |            |            |        |
   scheme     authority       path        query   fragment
      |   _____________________|__
     / \ /                        \
     urn:example:animal:ferret:nose

uri 可以是 url 或 urn。

A uri can be parsed into it's component parts:

The following are two examples from the RFC3986:

     foo://example.com:8042/over/there?name=ferret#nose
     \_/   \______________/\_________/ \_________/ \__/
      |           |            |            |        |
   scheme     authority       path        query   fragment
      |   _____________________|__
     / \ /                        \
     urn:example:animal:ferret:nose

A uri can be either a url or a urn.

请帮我爱他 2024-11-05 21:28:56

拆分还是解析?我认为这确实是语义学的问题,并且没有一个商定的术语。

Split or parse? I think it's really semantics, and there's not an agreed upon term.

池木 2024-11-05 21:28:56

我总是使用术语解析。

I would always use the term parsing.

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