4
votes
5answers
421 views
Decomposing HTML to link text and target
… BeautifulSoup.BeautifulSoup(urllib.urlopen(url))
links = soup.findAll('a')
for link in links:
print …
4
votes
8answers
1k views
Regex for links in html text
… am trying to write a Python script that extracts links from a standard HTML webpage (the … rns. Is there any agreed, standard regex to match links? …
1. What's the library solution for parsing HTML links. …
0
votes
6answers
2k views
RegEx to return ‘href’ attribute of ‘link’ tags only?
Im trying to craft a regex that only returns <link> tag hrefs
Why does this regex return all hrefs including <a hrefs?
(?<=<link\s+.*?)href\s*=\s* …
2
votes
6answers
2k views
regular expression replace a word by a link
I want to write a regular expression that will replace the word Paris by a link, for only the word is not ready a part of a link
Ex: i'm living <a href="Paris" atl="Paris link"> …
1
vote
4answers
308 views
regex to turn URLs into links without messing with existing links in the text
… ut the problem is when there are already existing links in the text …
0
votes
2answers
85 views
Replace Local Links, Keep External Links
Hi guys,
I have an API call that essentially returns the HTML of a hosted wiki application page. I'm then doing some substr, str_replace and preg_replace kung-fu to format it as per my site …
3
votes
3answers
573 views
Need a good regex to convert URLs to links but leave existing links alone
I have a load of user-submitted content. It is HTML, and may contain URLs. Some of them will be <a>'s already (if the user is good) but sometimes users are lazy and just type www …
2
votes
2answers
70 views
Convert Plain Text Links to HTML links with regular expressions
… I need regular expression that converts links in plain text to HTML links. … Here are the following test links: …
4
votes
8answers
1k views
Regular expression for parsing links from a webpage?
I'm looking for a .NET regular expression extract all the URLs from a webpage but haven't found one to be comprehensive enough to cover all the different ways you can specify a link.
And a …
1
vote
4answers
97 views
How can I write a regular expression to capture links with no link text?
… How can I write a regular expression to replace links with no link text like this: …
1
vote
4answers
424 views
Remove first forward slash in a link?
I need to remove the first forward slash inside link formatted like this:
/directory/link.php
I need to have:
directory/link.php
…
1
vote
5answers
227 views
Regular Expression for Link Tags in HTML
I need help with regular expressions. What I'm looking for is a regex that looks for link-tags like this:
<link rel="stylesheet" href="style.css" type="text/css">
…
1
vote
4answers
163 views
Python regex for finding contents of mediawiki markup links
If I have some xml containing things like the following mediawiki markup:
" ...collected in the 12th century, of which [[Alexander the Great]] was the
hero, and in which …
0
votes
1answer
183 views
Javascript text to link replacing
I need to replace text into link in
Link must be look like " href="/search?q=$oldtext" title="$oldtext" ".
$oldtext is text to replace.
I'm tried to use loop to find text with rege …
1
vote
3answers
65 views
