User Russ C - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T21:17:03Zhttp://stackoverflow.com/feeds/user/15697http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1636381/how-can-i-send-an-access-denied-http-response-to-the-client-in-asp-net/1637099#16370990Answer by Russ C for How can I send an "Access Denied" http response to the client in asp.net?Russ C2009-10-28T12:56:13Z2009-10-28T12:56:13Z<p>I'd do something like</p>
<pre><code>throw new HttpException(401, "Access Denied");
</code></pre>
http://stackoverflow.com/questions/1624279/priority-queue-in-net/1624295#16242950Answer by Russ C for Priority Queue in .NetRuss C2009-10-26T11:28:33Z2009-10-26T11:28:33Z<p>You could just implement IComparable on your class and create the specific comparer inside your class, that way you can just use IList.Sort() ?</p>
http://stackoverflow.com/questions/725817/outofmemoryexception-in-regex-matches-when-processing-large-files/725975#7259751Answer by Russ C for OutOfMemoryException in Regex Matches when processing large filesRuss C2009-04-07T14:18:56Z2009-04-07T14:18:56Z<p>Without seeing your Regex, I don't know for sure but sometimes you can get problems like this because your matches are Greedy instead of Lazy.</p>
<p>The Regex engine has to store lots of information internally and Greedy matches can end up causing the Regex to select large sections of your 800k string, many times over.</p>
<p>There's some good information about this over <a href="http://www.regular-expressions.info/catastrophic.html" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/253063/disable-but-not-uninstall-resharper-4-x/301568#3015682Answer by Russ C for Disable, but not uninstall Resharper 4.xRuss C2008-11-19T11:01:52Z2008-11-19T11:01:52Z<p>This definitely works in VS 2008 too.</p>
http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/82338#8233894Answer by Russ C for What's Your Motto As A Developer/Programmer?Russ C2008-09-17T12:02:14Z2008-09-17T12:02:14Z<p>"It works on my Machine!"</p>
http://stackoverflow.com/questions/1624279/priority-queue-in-net/1624350#1624350Comment by Russ C on Priority Queue in .NetRuss C2009-10-26T12:59:14Z2009-10-26T12:59:14ZThanks for the Snippet Lasse, got distracted by a manager :)http://stackoverflow.com/questions/1624279/priority-queue-in-net/1624295#1624295Comment by Russ C on Priority Queue in .NetRuss C2009-10-26T11:37:44Z2009-10-26T11:37:44ZIn that case, don't use IList, but implement an ICollection and you can specify your own Insert method that lets you order correctly on insertion.http://stackoverflow.com/questions/725817/outofmemoryexception-in-regex-matches-when-processing-large-files/725975#725975Comment by Russ C on OutOfMemoryException in Regex Matches when processing large filesRuss C2009-04-09T10:28:24Z2009-04-09T10:28:24ZHi Slough, Any news ?http://stackoverflow.com/questions/725817/outofmemoryexception-in-regex-matches-when-processing-large-files/725975#725975Comment by Russ C on OutOfMemoryException in Regex Matches when processing large filesRuss C2009-04-07T15:14:03Z2009-04-07T15:14:03ZThis looks better to me, it doesn't match the /css in a link type="text/css" ...
(?:="?)([\/|\?](?:[\w#!:\.\?\+=&@!$'~*,;\/\(\)\[\]\-]|%[0-9a-f]{2})*)http://stackoverflow.com/questions/725817/outofmemoryexception-in-regex-matches-when-processing-large-files/725975#725975Comment by Russ C on OutOfMemoryException in Regex Matches when processing large filesRuss C2009-04-07T15:09:01Z2009-04-07T15:09:01ZThis runs a lot quickler but I don't know if its accurate:
( |\.\.|\.|""|'|=)[\/|\?](?:[\w#!:\.\?\+=&@!$'~*,;\/\(\)\[\]\-]|%[0-9a-f]{2})*( |\.|\.\.|""|'| )http://stackoverflow.com/questions/725817/outofmemoryexception-in-regex-matches-when-processing-large-files/725975#725975Comment by Russ C on OutOfMemoryException in Regex Matches when processing large filesRuss C2009-04-07T15:06:26Z2009-04-07T15:06:26ZWhat's the regex actually wanting to match ? As you say, I think it's probably doing the wrong thing. The example take you gave me actually generated 19 matches!http://stackoverflow.com/questions/725817/outofmemoryexception-in-regex-matches-when-processing-large-files/725975#725975Comment by Russ C on OutOfMemoryException in Regex Matches when processing large filesRuss C2009-04-07T14:58:44Z2009-04-07T14:58:44ZDidn't seem to work for me, that regex maxes out my test program with a 30k html file, for Cpu cycles!http://stackoverflow.com/questions/725817/outofmemoryexception-in-regex-matches-when-processing-large-files/725975#725975Comment by Russ C on OutOfMemoryException in Regex Matches when processing large filesRuss C2009-04-07T14:52:48Z2009-04-07T14:52:48ZOn the latest regex, what happenes if you change the last '*' to '*?' http://stackoverflow.com/questions/725817/outofmemoryexception-in-regex-matches-when-processing-large-files/725975#725975Comment by Russ C on OutOfMemoryException in Regex Matches when processing large filesRuss C2009-04-07T14:48:27Z2009-04-07T14:48:27ZDo you have a small snippet of what you're trying to match ? Is it Html or is it text that might have Urls in it ?