Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
563 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
4answers
284 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 ...
3
votes
5answers
934 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'], ...
3
votes
8answers
4k 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 ...
3
votes
3answers
1k 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 ...
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 ...
1
vote
1answer
151 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 ...
1
vote
3answers
236 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 ...
1
vote
1answer
178 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 ...
1
vote
2answers
141 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 = ...
1
vote
4answers
2k 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 ...
1
vote
2answers
665 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..
1
vote
5answers
985 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?
0
votes
5answers
51 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
25 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 ...
0
votes
3answers
87 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
110 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 ...
0
votes
3answers
105 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
27 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
0
votes
1answer
143 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 ...
0
votes
2answers
597 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 ...
0
votes
2answers
94 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: ...
0
votes
3answers
367 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 ...
0
votes
2answers
354 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 ...
0
votes
1answer
181 views

how can multiple trailing slashes can be removed from an 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 ...
0
votes
2answers
809 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
239 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
294 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 ...