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?
|
|
I have a URL like this:
I want to parse the URL to get the values:
How do I do that?
|
|||
|
|
|
|
Write a custom parser or use one of the string replace functions to replace the separator ':' and then use |
||||
|
|
|
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#:
It produces this output:
|
||
|
|
|
Personnally, I steal the
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). |
|||
|
|
|
|
I writed a simple code use sscanf. I want have a base way to parsing it.
|
||||||||
|
|
|
With a regular expression if you want the easy way. Otherwise use FLEX/BISON. You could also use a URI parsing library |
||
|