The url-parsing tag has no wiki summary.
0
votes
1answer
25 views
tacking specific value from url form jquery/javascript [duplicate]
i have one url Like http://www.example.com/wall/post/1234568929842184
now i want to take the number after post/ from my url from javascript or jquery.
0
votes
1answer
34 views
Create relative URL from two absolutes (WinAPI)
Is there a method to create a relativeURL from two absolute ones (assumingthey have the same base / domain)
e.g.
MakeRelative("http://foo/1.html", "http://foo/img/2.png")
--> "./img/2.png"
...
0
votes
0answers
88 views
URL parsing using C++ without in-built string functions
I have just started using C++ and one question which came up during one of the interviews I attended recently was to parse through URL, and break it down into its components - domain, protocol, and ...
0
votes
2answers
90 views
Python url string match
My problem is the following. I have a long list of URLs such as:
www.foo.com/davidbobmike1joe
www.foo.com/mikejoe2bobkarl
www.foo.com/joemikebob
www.foo.com/bobjoe
I need to compare all the ...
1
vote
6answers
87 views
Extracting Information from URL with PHP
I would like to use PHP to extract the information from a url. How can I get the value "matt" from the url:
www.shareit.me/matt
Also, how can I possibly check to see if there is a value there to ...
0
votes
3answers
46 views
Most efficient way to retrieve numbers from a querystring?
I need to parse querystrings that contain both text and numbers. For example the following querystring:
?userID=12&team=Sales&quarter=Q1&count=2310
should be translated into the ...
0
votes
1answer
222 views
Why XDocument.Load(url) throws exception?
I am new to C# and I am trying to read xml from URL.
xml looks like this
<posts>
<post>
<title>title1</title>
<des>des1</des>
</post>
...
0
votes
1answer
134 views
Facebook Like “Object Invalid value” and URL could not be parsed
I am getting this error when I did my OG check at facebook
...
3
votes
1answer
217 views
Unable to handle square brackets (=[]) when parsing of URL to server
I am calling the following URL from my iPhone app
NSString *resourcePath = [NSString stringWithFormat:@"/sm/search?limit=100&term=%@&types[]=users&types[]=questions", searchTerm];
...
0
votes
1answer
145 views
History.js bookmark support for HTML5 (pushState) and HTML4 (#)
I've have the back and foward buttons working via History.js in both HTML5 and HTML4 browsers.
I'm now attempting to add bookmark support by parsing the url, and loading the content in the ...
0
votes
1answer
108 views
Django get last GET parameter
I've been working with Django for a few months now so I'm still new at it.
I want to get the last GET parameter from the URL. Here is and example of the URL:
...
0
votes
0answers
167 views
C# get url parameter namevaluecollection from rewritten url
If the url is not rewritten say like this
&tag=sql&page=3
I would get the parameter collection like this
var parameters = HttpUtility.ParseQueryString(uri.Query);
But if I have something ...
0
votes
0answers
25 views
How do I arrange a list of pages in URL tree?
I can manage to parse XML with jQuery, build the list from an (already-nested) array… but I'll appreciate any startup example to break the url down into directory levels to the array.
Thanks.
0
votes
3answers
75 views
Exception while parsing the url
I am getting the exception while parsing the content from am url. The exception i am getting is given below.
10-16 12:46:59.373: E/AndroidRuntime(4362): FATAL EXCEPTION: Thread-12
10-16 12:46:59.373: ...
2
votes
2answers
74 views
Is JavaScript able to to parse arbitrary URLs the same way the current URL is parsed in windows.location?
I like that the current address is nicely split up into sections in window.location, but I would like to be able to take an arbitrary URL and split it up following the exact same logic. I don't know ...
0
votes
2answers
179 views
Processing escaped url strings within json using python
I am accessing a service that is returning json as follows:
{
"A":"A value",
"B":{
"B1":"B1 value",
"B2":"B2 value"
},
"C":{
...
2
votes
1answer
715 views
How to remove subdomains from domains using javascript [closed]
I am starting with domains that look like this:
www.exemple.com
main.testsite.com
www.ex-emple.com.ar
main.test-site.co.uk
en.tour.mysite.nl
www.ip.com
www.one.lv
and I need to remove the ...
0
votes
1answer
132 views
Parse KOI8-r encoding objective c
I need to parse url which is actually in KOI8-R encoding and as i've surfed there is no encoding in objective c which allows to do that.
It used to be smth like this
NSString* fileText = [NSString ...
3
votes
2answers
659 views
Reconstructing absolute urls from relative urls on a page
Given an absolute url of a page, and a relative link found within that page, would there be a way to a) definitively reconstruct or b) best-effort reconstruct the absolute url of the relative link?
...
4
votes
1answer
353 views
Regex ignore URL already in HTML tags
I'm having a little problem with my Regex
I've made a custom BBcode for my website, however I also want URLs to be parsed too.
I'm using preg_replace and this is the pattern used to identify URLS:
...
2
votes
1answer
426 views
How to get a subdirectory in the path of a URL?
I am looking for a way to split a URL, such as http://aaa/bbb/ccc/ddd/eee.
How do I get "ccc"? Of course it is possible to split it, but it is not interesting.
2
votes
5answers
252 views
Parse mailto urls in Python
I'm trying to parse mailto URLs into a nice object or dictionary which includes subject, body, etc. I can't seem to find a library or class that achieves this- Do you know of any?
...
0
votes
2answers
149 views
Links to user-specified urls interpreted as relative urls
Sorry if this question has been answered elsewhere, but I've spent awhile looking with no luck.
In my web app, I ask users to specify urls to their blogs. However, they don't always put "http://" at ...
2
votes
1answer
1k views
window.location.hash issue in Firefox
Consider the following code:
hashString = window.location.hash.substring(1);
alert('Hash String = '+hashString);
When run with the following hash:
#car=Town%20%26%20Country
the result in ...
0
votes
3answers
649 views
Parsing an URL in JavaScript
I need to parse url in JavaScript.
Here is my code:
var myRe = /\?*([^=]*)=([^&]*)/;
var myArray = myRe.exec("?page=3&Name=Alex");
for(var i=1;i<myArray.length;i++)
{
...
0
votes
1answer
351 views
Post form data to two urls using http get
Please help, I have a simple web form and when the submit button is pressed I would like the form to post the data to two URLs, while redirecting to one of them immediately.
Here's what I have setup ...
2
votes
3answers
2k views
Break a URL into its components
I'm using javascript and would like to take a URL string that I have and break it down into its components such as the host, path, and query arguments.
I need to do this in order to get to one of the ...
4
votes
5answers
2k views
Problems parsing an URL with Python
I need to parse an URL. I'm currently using urlparse.urlparse() and urlparse.urlsplit().
The problem is that i can't get the "netloc" (host) from the URL when it's not present the scheme.
I mean, if ...
0
votes
3answers
280 views
Is get or basename() more efficient?
which of the following is more efficient?
Using a get function on a token (random), for example:
http://www.example.com/category/subcategory/subsubcategory?value=random
$_GET['value']
Make the ...
0
votes
1answer
68 views
Is the unencoded equals character (=) allowed as the value of a querystring?
Lets say i have the following URL:
http://www.foo.com?key1=bar&key2=baz=egg
Between "baz" and "egg" is an equals.
Does "baz=egg" count as value for key2 or has = to be encoded?
Thanks
1
vote
1answer
458 views
PHP: return current URL
With php, I want to return the current url of the page I am currently on.
for example, if this script is run on http://www.google.com, I want to echo out 'google' sans http://
OR
if this script is ...
1
vote
1answer
310 views
Parse out a URL query argument in javascript
I'm using javascript and need to parse out a query argument that is a URL:
/folderone/two?link=http%3A%2F%2Fwww.cooldomainname.com
This is doubly hard because I not only need to parse out the query ...
0
votes
2answers
1k views
Decode Form Urlencoded UTF8 in C#
Edit I'd misunderstood what was happening here.. there is a POST send, then receive back a result, then the URL string which I'm seeing here is part of the the query string... so I can't decode what ...
6
votes
5answers
3k views
How can I extract video ID from YouTube's link in Python?
I know this can be easily done using PHP's parse_url and parse_str functions:
$subject = "http://www.youtube.com/watch?v=z_AbfPXTKms&NR=1";
$url = parse_url($subject);
parse_str($url['query'], ...
0
votes
2answers
114 views
Problem with Regex for URL
In my C# program I wrote a Google Search Fuction, which works by fetching the source from each page and getting the URLs via regex.
My actual Regex is:
...
1
vote
3answers
770 views
remove session id from url
I want to develope simple web crawler, to grabb pages from several web sites and maintain them in actual condition. Some of this sites has session ids on each link, they doesn't store sesion ids in ...
1
vote
2answers
294 views
Parsing a list into a url string
I have a list of tags that I would like to add to a url string, separated by commas ('%2C'). How can I do this ? I was trying :
>>> tags_list
['tag1', ' tag2']
>>> parse_string = ...
0
votes
2answers
791 views
javascript plain text url parsing
I'm trying to search plain old strings for urls that begin with http, but all the regex I find doesn't seem to work in javascript nor can I seem to find an example of this in javascript.
This is the ...
23
votes
3answers
4k views
Creating a new Location object in javascript
Is it possible to create a new Location object in javascript? I have a url as a string and I would like to leverage what javascript already provides to gain access to the different parts of it.
...
3
votes
1answer
1k views
How can multiple trailing slashes can be removed from a URL in Ruby
What I'm trying to achieve here is lets say we have two example URLs:
url1 = "http://emy.dod.com/kaskaa/dkaiad/amaa//////////"
url2 = "http://www.example.com/"
How can I extract the striped down ...
1
vote
4answers
5k views
Parse request URL in JSTL
I want to display a specific message based on the URL request on a JSP.
the request URL can be:
/app/cars/{id}
OR
/app/people/{id}
On my messages.properties I've got:
events.action.cars=My ...
10
votes
9answers
23k views
How to get the last path in the url?
I would like get the last path segment in a URL:
http://blabla/bla/wce/news.php or
http://blabla/blablabla/dut2a/news.php
For example, in these two URLs, I want to get the path segment: 'wce', and ...
2
votes
3answers
1k views
How to identify the top level domain of a URL object using java?
Given this :
URL u=new URL("someURL");
How do i identify the top level domain of the URL..
3
votes
3answers
2k views
how to parse URLs in c using sscanf()?
this is my c code that reads a list of URLs from a file , and tries to separate the various parts of the URL.. This is just rough parsing , i'm not bothered about special cases.. I guess there is ...
0
votes
2answers
1k views
Does Grails have a neat way of copy domain properties from a URL query string?
I know Grails has a map based constructor for domain objects, to which you can pass the params of a URL to and it will apply the appropriate field settings to the object using introspection, like ...
0
votes
3answers
324 views
How can I break an url and store the key-words into database using php
Like http:webmail.wipro.com#a:?b;
I want to break this url and store only webmail and wipro into my database. Can any one help me out with this please. Using php.
0
votes
4answers
648 views
Parsing URLs using PHP
I have posted a similar question here. However, this was more about getting advice on what to do. Now that I know what to do, I am looking for a little help on how to do it!
Basically I have a ...
2
votes
10answers
1k views
Question on dynamic URL parsing
I see many, many sites that have URLs for individual pages such as
http://www.mysite.com/articles/this-is-article-1
http://www.mysite.com/galleries/575
And they don't redirect, they don't run ...
2
votes
5answers
1k views
A Delphi/FreePascal lib or function that emulates the PHP's function parse_url
I'm doing a sitemap producer in Object Pascal and need a good function or lib to emulate the parse_url function on PHP.
Does anyone know of any good ones?
