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?
|
|
|
Write a custom parser or use one of the string replace functions to replace the separator ':' and then use |
|||||||
|
|
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). |
|||||||||
|
|
With a regular expression if you want the easy way. Otherwise use FLEX/BISON. You could also use a URI parsing library |
|||
|
|
I writed a simple code use sscanf. I want have a base way to parsing it.
|
|||||||||||
|
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.