Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a URL like this:

http://192.168.0.1:8080/servlet/rece

I want to parse the URL to get the values:

IP: 192.168.0.1
Port: 8080
page:  /servlet/rece

How do I do that?

share|improve this question

4 Answers

up vote 4 down vote accepted

Write a custom parser or use one of the string replace functions to replace the separator ':' and then use sscanf().

share|improve this answer
8  
There are many traps to watch so a custom parser seems to me a bad idea. – bortzmeyer Apr 7 '09 at 16:53
@bortzmeye: that doesn't make the suggestion invalid. It's vague reasoning. Also, a custom parser is the most powerful/efficient/dependency free. The sscanf is easier to get wrong. – dirkgently Apr 7 '09 at 17:00

Personnally, I steal the HTParse.c module from the W3C (it is used in the lynx Web browser, for instance). Then, you can do things like:

 strncpy(hostname, HTParse(url, "", PARSE_HOST), size)

The important thing about using a well-established and debugged library is that you do not fall into the typical traps of URL parsing (many regexps fail when the host is an IP address, for instance, specially an IPv6 one).

share|improve this answer
In particular, be aware that with IPv6 there are ambiguous cases if you try to use the colon separator. e.g. 3ffe:0501::1:2, is that a port of 2, or a full address with your default port. The URL specs have dealt with this, as have the the prewritten libraries. – bitmusher Jan 18 at 21:53
1  
Note there is no real ambiguity. The URI standard, RFC 3986, is clear and your example is illegal (you need square brackets). – bortzmeyer Jan 31 at 9:35
Thanks, this is comforting. I was under the mistaken impression that user facing code, like browser address bars, was accepting the addresses without square brackets. A quick tour of some popular browsers reveals this is not the case. – bitmusher Feb 2 at 18:03

With a regular expression if you want the easy way. Otherwise use FLEX/BISON.

You could also use a URI parsing library

share|improve this answer
Indeed, using a library seems the only reasonable thing, since there are many traps (http vs. https, explicit port, encoding in the path, etc). – bortzmeyer Apr 7 '09 at 17:05

I writed a simple code use sscanf. I want have a base way to parsing it.

cat urlparse.c
#include <stdio.h>

int main(void)
{
    const char text[] = "http://192.168.0.2:8888/servlet/rece";
    char ip[100];
    int port = 80;
    char page[100];
    sscanf(text, "http://%99[^:]:%99d/%99[^\n]", ip, &port, page);
    printf("ip = \"%s\"\n", ip);
    printf("port = \"%d\"\n", port);
    printf("page = \"%s\"\n", page);
    return 0;
}

./urlparse
ip = "192.168.0.2"
port = "8888"
page = "servlet/rece"
share|improve this answer
What platform is this on? I did not know you could put regexp like [^:] in a sscanf format. – Jeroen Dirks Apr 7 '09 at 15:44
My platform is: uname -a Linux ubuntu 2.6.24-21-generic #1 SMP Tue Oct 21 23:43:45 UTC 2008 i686 GNU/Linux – Jiang Bian Apr 8 '09 at 1:35
2  
[^:] is not a regexp in this context, it's merely a special format specifier for sscanf(). It is standard. See for instance this manual page: <linux.die.net/man/3/sscanf>;. – unwind Apr 8 '09 at 7:04
The parse had some mistakes when no port number, It con't work well. How can i fix it. – Jiang Bian Apr 9 '09 at 0:06

protected by Will Jan 13 '11 at 15:00

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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