|
|
Browse by Tags
All Tags » URl extraction
Showing page 1 of 2 (12 total posts)
-
Hi,
I've been trying for sometime to write a regex to extract values from a url in Actionscript 2.0.
My url could be of the form:
http://<hostname>:<port>/<some page address>
So far, i've been able to get the following to work:
(https?):\/\/([\w\d#@%\/;$()~_?\+-=\\\.&]*):([1-9][0-9]*)\/
You might know that ...
-
Hi there.
I need to regular expression to evaluate this URL setup:
http://www.website.com/part-1/part-2/part-3/part-4/some-here-amt-varies-924/
What I need that to evaluate to is /url.asp?id=924. This is for ISAPI URL Re-Write. Something like this:
^/part-1/part-2/part-3/part-4/some-here-amt-varies-924/ url.asp?id=$5
I just ...
-
Hi,
I'm using PHP to parse an incoming email. I wish to be able to match then store URL's contained in the email message.
I just need to figure out the RegEx to match URL's. I've been currently building and testing ...
-
Hi everyone I was wondering if anyone could shed some light on what I’m trying to achieve , if not then no problem I can battle on with it.
I am building a regex that will identify any valid url within a string and wrap it with an href tag. Im using the online regex builder here http://gskinner.com/RegExr/
Thus far I have this ...
-
I've been scouring the internet trying to find an expression to extract domains from URL's. I've found a very good one, but it doesn't do ALL that I need it too. See below for criteria.
Current Expression: ^(?:[^/]+://)?([^/:]+)
Lang: Java
Current Logic:
matcher = ...
-
greetings,
in javascript, i'm trying to pull out pieces of a url via regex. my url looks like this:
http://domain.com/index.html#hash=http://domain.com/index.php?arg=val&arg2=val2&meta=val&meta2=val
I want to be able to extract everything after hash= up until meta=. but i want it to go to meta= if ...
-
Hi guys and gals,
Ok, some background: I'm writing a Twitter application (javascript) so I have to parse all kinds of URLs. This is what I have:
regex = new ...
-
Hello all,
First post, but I'll try not to annoy you too much. I'm currently trying to write out a nice regex for Apache's ReWrite engine so that I can use search engine friendly (SEF) URLs. The problem I'm coming across is that optional parameters (such as language) are pulling in an 'undefined' value.
Here's ...
-
Hi guys,
could you help me to create a simple url rewriting for this.
ex: http://mysite.com/product/23/default.aspx
ex: http://mysite.com/product/23/category/23/default.aspx
ex: http://mysite.com/product/23/category/23/manufacture/2/default.aspx
Basically I want a regex that can match above url, so i can rewrite the url to ...
-
Hi!
Kindly have a look on following web page:
http://salondigital.net/gsg/gsg/www.goodsalonguide.co.uk/locator18f1.html
1- How can I get only and only the url which is against the name of salon or against 'full details' .
2- How can I avoid duplicaion of url through regexp in getting urls from above ...
1
|
|
|