|
|
Browse by Tags
All Tags » URI extraction
-
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 = ...
-
hello,
i would like to parse out a domain name from an a href tag. the href tag could be anything, as i am parsing through xml that could hold any kind of url in it, depending on who is entering the data on the other end.
what i am doing is parsing out the domain name from a string such as this:
<a ...
-
Hello how's everyone doin'? I need help with the regular expression in PHP (using preg_match_all) that would extract the url and the image of these two:
<A HREF="movie1.mpg"><img name="movie1" src="images/tn_01.jpg" width="320" height="240" border="0" alt="Play ...
-
Hello how's everyone doin'? I need help with the regular expression in PHP (using preg_match_all) that could extract the url and the image of these two:
<A HREF="movie1.mpg"><img name="movie1" src="images/tn_01.jpg" width="320" height="240" border="0" alt="Play ...
-
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,
I'm converting a Word document to HTML in BBEdit and need to remove text as in the following example:
HYPERLINK "http://www.abc.com/art59.html"http://www.abc.com/art59.html
I need to remove from the first H to and including the second inverted comma so that I am just left with:
http://www.abc.com/art59.html
The ...
|
|
|