Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

3 Answers

up vote 2 down vote accepted

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

share|improve this answer

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.

share|improve this answer

I would always use the term parsing.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.