vote up 1 vote down star

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?

flag

50% accept rate

5 Answers

vote up 4 vote down check

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

link|flag
There are many traps to watch so a custom parser seems to me a bad idea. – bortzmeyer Apr 7 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 at 17:00
vote up 1 vote down

If you're using the CLR, you may want to consider using the System.Uri class. I don't know C, so here's an example in C#:

using System;

class Program
{
    static void Main(string[] args)
    {
        string url = "http://192.168.0.1:8080/servlet/rece";

        Console.WriteLine("Original URL: {0}", url);
        Console.WriteLine();

        Uri uri = new Uri(url);

        Console.WriteLine("Server: {0}", uri.Host);
        Console.WriteLine("Port: {0}", uri.Port);
        Console.WriteLine("Page: {0}", uri.PathAndQuery);

        Console.ReadLine();
    }
}

It produces this output:

Original URL: http://192.168.0.1:8080/servlet/rece

Server: 192.168.0.1

Port: 8080

Page: /servlet/rece

link|flag
My platform is working on mips linux, It's a Embedded system. only can use C programming. – BianJiang Apr 8 at 4:53
vote up 2 vote down

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).

link|flag
vote up 0 vote down

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"
link|flag
What platform is this on? I did not know you could put regexp like [^:] in a sscanf format. – James Dean Apr 7 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 – BianJiang Apr 8 at 1:35
[^:] 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 at 7:04
The parse had some mistakes when no port number, It con't work well. How can i fix it. – BianJiang Apr 9 at 0:06
vote up 5 vote down

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

You could also use a URI parsing library

link|flag
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 at 17:05

Your Answer

Get an OpenID
or

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