将 URI 分解为其组成部分的正确术语是什么?
假设我们有一个字符串“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
可以将 uri 解析为其组成部分:
以下是 RFC3986 中的两个示例:
uri 可以是 url 或 urn。
A uri can be parsed into it's component parts:
The following are two examples from the RFC3986:
A uri can be either a url or a urn.
拆分还是解析?我认为这确实是语义学的问题,并且没有一个商定的术语。
Split or parse? I think it's really semantics, and there's not an agreed upon term.
我总是使用术语解析。
I would always use the term parsing.