Regular Expression Help - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T01:02:10Zhttp://stackoverflow.com/feeds/question/457015http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/457015/regular-expression-help-1Regular Expression Helpxoxo2009-01-19T09:33:00Z2009-01-19T10:04:59Z
<p>I am trying to find all of the links in source code on a website, could anyone tell me the expression i would need to put in my Regex to find these?</p>
<p><hr /></p>
<p>Duplicate of (among others): <a href="http://stackoverflow.com/questions/6173/regular-expression-for-parsing-links-from-a-webpage">Regular expression for parsing links from a webpage?</a></p>
<p>Google finds more: <a href="http://www.google.com/search?q=html+links+regex+site%3Astackoverflow.com" rel="nofollow">html links regex site:stackoverflow.com</a></p>
http://stackoverflow.com/questions/457015/regular-expression-help/457017#4570171Answer by PEZ for Regular Expression HelpPEZ2009-01-19T09:35:34Z2009-01-19T09:42:00Z<p>Here's a good resource for it: <a href="http://stackoverflow.com/search?q=%5bregex%5d+links">How to match links in HTML with regex</a>.</p>
http://stackoverflow.com/questions/457015/regular-expression-help/457030#457030-1Answer by Patrik for Regular Expression HelpPatrik2009-01-19T09:41:20Z2009-01-19T09:41:20Z<p>Probably not bullet proof, but this one will do the trick I think (.NET regex).</p>
<pre><code><a href[^>]*>(.*?)</a>
</code></pre>
<p>Some code to match all links from the HTML file:</p>
<pre><code>StringCollection resultList = new StringCollection();
try {
Regex regexObj = new Regex("<a href[^>]*>(.*?)</a>", RegexOptions.IgnoreCase);
Match matchResult = regexObj.Match(subjectString);
while (matchResult.Success) {
resultList.Add(matchResult.Value);
matchResult = matchResult.NextMatch();
}
} catch (ArgumentException ex) {
// Syntax error in the regular expression
}
</code></pre>
http://stackoverflow.com/questions/457015/regular-expression-help/457059#457059-2Answer by Isaac Dealey for Regular Expression HelpIsaac Dealey2009-01-19T09:51:01Z2009-01-19T10:04:59Z<p>I'm not certain how these would translate to C# (I haven't done any development in C# myself yet), but here's how I might do it in JavaScript or ColdFusion. It might give you an idea about how you want to do it in C#. </p>
<p>In JavaScript I <i>think</i> this would work: </p>
<pre><code>rex = /.*href="([^"]+)"/;
a = source.replace(rex,'\n$1').split('\n');
</code></pre>
<p>after which a would be an array containing the links... though I'm not certain if that will work exactly the way I think it will. The idea here is that the replace creates a line-break-delimited list (because you can't have a line-break in a URL) and then you can break apart the list with split() to get your array. </p>
<p>By comparison in ColdFusion you would have to do something slightly different: </p>
<pre><code>a = REMatch('href="[^"]+"',source);
for (i = 1; i < ArrayLen(a); i++) {
a[i] = mid(a[i],6,len(a[i])-1);
}
</code></pre>
<p>Again, I haven't tested it, but rematch returns an array of instances of the expression and then the for-next loop removes the href="" around the actual URL. </p>