User Huppie - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T06:27:46Z http://stackoverflow.com/feeds/user/1830 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1879018/regex-for-capturing-digits-and-digit-ranges/1879285#1879285 0 Answer by Huppie for regex for capturing digits and digit ranges Huppie 2009-12-10T07:47:21Z 2009-12-10T07:52:43Z <p>Hmm, this is a tricky question, especially because the input string contains unicode character – (<a href="http://www.fileformat.info/info/unicode/char/2013/index.htm" rel="nofollow">EN DASH</a>) instead of - (<a href="http://www.fileformat.info/info/unicode/char/002d/index.htm" rel="nofollow">HYPHEN-MINUS</a>). Therefore the correct regex to match the numbers in the original string would be:</p> <pre><code>\d+(?:[\u2013,.]\d+)* </code></pre> <p>If you want a more generic approach would be:</p> <pre><code>\d+(?:[\p{Pd}\p{Pc}\p{Po}]\d+)* </code></pre> <p>which matches <em>dash punctuation</em>, <em>connecter punctuation</em> and <em>other punctuation</em>. See <a href="http://www.regular-expressions.info/unicode.html#prop" rel="nofollow">here</a> for more information about those.</p> <p>An implementation in C# would look like this:</p> <pre><code>string input = "Fat mass loss was 2121,323.222 greater for GPLC (2–2.4kg vs. 0.5kg)"; try { Regex rx = new Regex(@"\d+(?:[\p{Pd}\p{Pc}\p{Po}\p{C}]\d+)*", RegexOptions.IgnoreCase | RegexOptions.Multiline); Match match = rx.Match(input); while (match.Success) { // matched text: match.Value // match start: match.Index // match length: match.Length match = match.NextMatch(); } } catch (ArgumentException ex) { // Syntax error in the regular expression } </code></pre> http://stackoverflow.com/questions/1812723/which-scm-and-issue-tracker-to-use-for-personal-work/1812736#1812736 2 Answer by Huppie for Which SCM and Issue tracker to use for personal work? Huppie 2009-11-28T15:12:57Z 2009-11-28T15:12:57Z <p>I would recommend <a href="http://git-scm.com/" rel="nofollow">Git</a> with <a href="http://github.com/" rel="nofollow">GitHub</a></p> http://stackoverflow.com/questions/1807194/regular-expression-tools/1807216#1807216 1 Answer by Huppie for Regular Expression Tools Huppie 2009-11-27T07:16:08Z 2009-11-27T07:28:06Z <p><a href="http://www.regexbuddy.com" rel="nofollow">Regex Buddy</a> of course!</p> <p>It supports just about every possible flavour of Regular Expressions, including .NET, Perl, PCRE, JavaScript, POSIX BRE etc. Which is usually the hardest part (My problem is usually to find out how to formulate this regular expression in such a way that JavaScript understands it).</p> <p>The best thing is that it can immediately output the code for your specific language. Since I'm a bit lazy that comes in handy ;-)</p> http://stackoverflow.com/questions/13699/choosing-a-c-unit-testing-tool-framework/14267#14267 3 Answer by Huppie for choosing a c++ unit testing tool/framework Huppie 2008-08-18T07:12:13Z 2009-11-18T10:34:20Z <p>I once did a comprehensive test of (if I remember correctly) five unittest-frameworks for C++, but not specifically for a UNIX environment. There where two clear winners for me, being <a href="http://cppunit.sourceforge.net/" rel="nofollow">CPPUnit</a> and <a href="http://unittest-cpp.sourceforge.net/" rel="nofollow">UnitTest++</a>. Back then CPPUnit was the best choice since (imo) setting up a testing-project is way easier than with UnitTest++ but at work I use UnitTest++ these days.</p> <p>Sadly, I haven't been able to find the document since the original posting date of this comment. If I ever find the document again (It's there, somewhere in a backup I suppose) I'll post the comparison below.</p> <p><a href="http://stackoverflow.com/users/135960/idimba">Idimba</a> found <a href="http://gamesfromwithin.com/exploring-the-c-unit-testing-framework-jungle" rel="nofollow">this</a> good article summarizing a lot of the pros / cons of different C++ test frameworks.</p> http://stackoverflow.com/questions/138449/how-to-convert-a-unicode-character-to-its-ascii-equivalent 3 How to convert a Unicode character to its ASCII equivalent Huppie 2008-09-26T09:25:34Z 2009-11-17T12:03:41Z <p>Here's the problem:</p> <p>In C# I'm getting information from a legacy ACCESS database. .NET converts the content of the database (in the case of this problem a string) to Unicode before handing the content to me.</p> <p>How do I convert this Unicode string back to it's ASCII equivalent?</p> <p><hr> <strong>Edit</strong><br /> Unicode char 710 is indeed MODIFIER LETTER CIRCUMFLEX ACCENT. Here's the problem a bit more precise: </p> <pre> -> (Extended) ASCII character ê (Extended ASCII 136) was inserted in the database. -> Either Access or the reading component in .NET converted this to U+02C6 U+0065 (MODIFIER LETTER CIRCUMFLEX ACCENT + LATIN SMALL LETTER E) -> I need the (Extended) ASCII character 136 back. </pre> <p><hr> Here's what I've tried (I see now why this did not work...):</p> <pre><code>string myInput = Convert.ToString(Convert.ToChar(710)); byte[] asBytes = Encoding.ASCII.GetBytes(myInput); </code></pre> <p>But this does not result in 94 but a byte with value 63...<br /> Here's a new try but it still does not work:</p> <pre><code>byte[] bytes = Encoding.ASCII.GetBytes("ê"); </code></pre> <p><hr> <strong>Soltution</strong><br /> Thanks to both <a href="http://stackoverflow.com/questions/138449/how-to-convert-a-unicode-character-to-its-extended-ascii-equivalent#138579">csgero</a> and <a href="http://stackoverflow.com/questions/138449/how-to-convert-a-unicode-character-to-its-extended-ascii-equivalent#138583">bzlm</a> for pointing in the right direction I solved the problem <a href="http://stackoverflow.com/questions/138449/how-to-convert-a-unicode-character-to-its-ascii-equivalent#141816">here</a>.</p> http://stackoverflow.com/questions/1747869/how-to-http-post-from-a-link-without-js/1747937#1747937 2 Answer by Huppie for How to HTTP POST from a link without JS Huppie 2009-11-17T10:32:24Z 2009-11-17T10:32:24Z <p>You could make the button look like a normal link if you want using CSS?</p> <p>Something like this perhaps?</p> <pre><code>&lt;style type="text/css" media="screen"&gt; input { border: none; background: none; color: #00f; text-decoration: underline; cursor: pointer; display: in-line; margin: 0px; padding: 0px; } &lt;/style&gt; Click &lt;input type="submit" value="here"/&gt;! </code></pre> <p>Edit to add: The following CSS is just an example of how it <em>might</em> work, though not thorougly tested and to make it look like one of your normal links you might need to tweak it a bit.</p> http://stackoverflow.com/questions/1747001/make-an-input-typetext-only-numbers-are-input-able/1747141#1747141 1 Answer by Huppie for Make an <input type="text" /> only numbers are input-able? Huppie 2009-11-17T07:18:43Z 2009-11-17T07:18:43Z <p>Though a bit more fragile since it uses keycodes... the following would work more intuitive because it makes it completely impossible to enter non-numbers:</p> <pre><code>$("#target").keydown(function(event) { return ( event.keyCode &lt; 32 || // Control characters ( event.keyCode &gt;= 48 &amp;&amp; event.keyCode &lt;= 57 ) || // Numbers event.keyCode == 127 ); // Delete key }); </code></pre> <p><hr></p> <p>Note to add: This is actually not the best way to go... since a (windows) ALT+[num]132 will make it possible to enter ä into the box. It should be combined with the keyup event to ensure that no characters have been entered as well like so, <em>Combined:</em></p> <pre><code>$("#target").keydown(function(event) { return ( event.keyCode &lt; 32 || // Control characters ( event.keyCode &gt;= 48 &amp;&amp; event.keyCode &lt;= 57 ) || // Numbers event.keyCode == 127 ); // Delete key }); $("#target").keyup(function(event) { event.target.value = event.target.value.replace(/[^0-9]/g, ""); }); </code></pre> <p>Also, this doesn't work with the num-pad-numbers over here so it definately is more fragile than a simple blur() event.</p> http://stackoverflow.com/questions/1741894/zendjsonencode-messing-up-why/1742111#1742111 2 Answer by Huppie for Zend_JSON:Encode messing up - why!?!??! Huppie 2009-11-16T13:11:36Z 2009-11-16T13:50:02Z <p>You fix this by updating your PHP version to a version later than version 5.2.7.</p> <p>There was a <a href="http://bugs.php.net/bug.php?id=43941" rel="nofollow">serious UTF-8 bug</a> in PHP's <a href="http://php.net/json%5Fencode" rel="nofollow">json_encode</a> function before that version. See the <a href="http://php.net/changelog" rel="nofollow">changelog</a> for more details.</p> <p><hr></p> <p>Since you note that you are using PHP version 5.2.9.2 your version should be good :) Have you tried routing the specific contents of the html through PHP's json_encode() manually?</p> <p>Or maybe through <a href="http://php.net/utf8%5Fencode" rel="nofollow">utf8_encode()</a> or <a href="http://php.net/utf8%5Fdecode" rel="nofollow">utf8_decode()</a>?</p> http://stackoverflow.com/questions/1728975/empty-post-with-jquery-ajax-post/1729017#1729017 0 Answer by Huppie for Empty Post with JQuery Ajax Post Huppie 2009-11-13T12:44:57Z 2009-11-13T12:44:57Z <p>Not sure but maybe this is causes by a browser-bug? Since you're getting an empty post to the server the jquery post method works properly but it seems like the json-conversion doesn't work in some cases.</p> <p>You should have a look it the IIS log files for the USER-AGENT that posts these empty values.</p> <p>Of course it is also possible that somebody is doing a manual POST to your server... looking for vulnerabilities to exploit.</p> http://stackoverflow.com/questions/1699958/formatting-a-number-with-leading-zeros-in-php/1699994#1699994 2 Answer by Huppie for Formatting a number with leading zeros in PHP Huppie 2009-11-09T09:33:47Z 2009-11-09T09:33:47Z <p>Though I'm not really sure what you want to do you are probably looking for <a href="http://www.php.net/sprintf" rel="nofollow">sprintf</a>.</p> <p>This would be:</p> <pre><code>&lt;?php $value = sprintf( '%08d', 1234567 ); ?&gt; </code></pre> http://stackoverflow.com/questions/1409476/startswith-in-javascript-error/1409501#1409501 6 Answer by Huppie for startswith in javascript error Huppie 2009-09-11T07:36:45Z 2009-09-14T06:05:36Z <p>If you're matching using a regular expression you must make sure you pass a valid <a href="http://www.regular-expressions.info/" rel="nofollow">Regular Expression</a> to match(). Check the <a href="http://www.regular-expressions.info/characters.html" rel="nofollow">list of special characters</a> to make sure you don't pass an invalid regular expression. The following characters should always be escaped (place a \ before it): [\^$.|?*+()</p> <p>A better solution would be to use substr() like this:</p> <pre><code>if( str === words.substr( 0, str.length ) ) { // match } </code></pre> <p>or a solution using indexOf is a (which looks a bit cleaner):</p> <pre><code>if( 0 === words.indexOf( str ) ) { // match } </code></pre> <p>next you can add a startsWith() method to the string prototype that includes any of the above two solutions to make usage more readable:</p> <pre><code>String.prototype.startsWith = function(str) { return ( str === this.substr( 0, str.length ) ); } </code></pre> <p>When added to the prototype you can use it like this:</p> <pre><code>words.startsWith( "word" ); </code></pre> http://stackoverflow.com/questions/1387927/regeparen-in-php/1387941#1387941 1 Answer by Huppie for REG_EPAREN in php Huppie 2009-09-07T07:08:29Z 2009-09-07T07:18:09Z <p>Since <a href="http://www.php.net/manual/en/function.eregi.php" rel="nofollow">eregi</a> does a 'case insensitive regular expression match' $check should contain a valid <a href="http://www.regular-expressions.info/" rel="nofollow">regular Expression</a>, not just 'text type data'. You should probably use <a href="http://www.php.net/manual/en/function.stristr.php" rel="nofollow">stristr</a> instead.</p> http://stackoverflow.com/questions/1351770/non-startup-microsoft-isv-development-on-the-cheap/1377508#1377508 1 Answer by Huppie for Non-startup Microsoft ISV development, on the cheap? Huppie 2009-09-04T06:15:42Z 2009-09-04T06:15:42Z <p>Just some random questions:</p> <p><em>Do all license agreements allow the software to be reinstalled permanently every 120 days?</em><br /> As far as I know running evaluation software permanently, reinstalling it every X days is considered 'abusing' the evaluation license in my country and therefore counts as illegal usage.</p> <p><em>Are you sure you can do without a profiler?</em><br /> Visual Studio Standard doesn't have one...</p> <p><em>How much is your time worth?</em><br /> As in: How much time will go into setting up this 'reinstall <em>everything</em> every X days' setup. I would think this takes at least a day, everytime you do this... you can only backup specific things and settings, not just the whole server. Therefore if you decides you use some new server components you'll have to remember / make sure you reinstall all of these components at the next 'reinstall'-day. Even in the best-case scenario of one day per evaluation period, that will be 24 developer-hours.</p> <p>And at last, to answer your question:</p> <blockquote> <p>Am I just being a complete cheapskate?</p> </blockquote> <p>Yes, you are ;-)</p> http://stackoverflow.com/questions/1332217/backticking-mysql-entities/1371769#1371769 2 Answer by Huppie for Backticking MySQL Entities Huppie 2009-09-03T06:51:58Z 2009-09-03T10:22:29Z <p>Using the test case <a href="http://stackoverflow.com/questions/1332217/backticking-mysql-entities/1332294#1332294">ndp</a> gave I created a regex to do the hard work for you. The following regex will replace all word boundaries around words that are not followed by an opening parenthesis.</p> <pre><code>\b(\w+)\b(?!\() </code></pre> <p>The Tick() functionality would then be implemented in PHP as follows:</p> <pre><code>function Tick($string) { return preg_replace( '/\b(\w+)\b(?!\()/', '`\1`', $string ); } </code></pre> http://stackoverflow.com/questions/32414/force-javascript-file-refresh-on-client/32427#32427 14 Answer by Huppie for Force JavaScript file refresh on client Huppie 2008-08-28T14:34:12Z 2009-09-02T14:01:05Z <p>As far as I know a common solution is to add a ?&lt;version&gt; to the script src link.</p> <p>For instance:</p> <pre><code>&lt;script type="text/javascript" src="myfile.js?1500"&gt;&lt;/script&gt; </code></pre> <p><hr></p> <blockquote> <p>I assume at this point that there isn't a better way than find-replace to increment these "version numbers" in all of the script tags?</p> </blockquote> <p>You might have a version control system do that for you? Most version control systems have a way to automatically inject the revision number on check-in for instance.</p> <p>It would look something like this:</p> <pre><code>&lt;script type="text/javascript" src="myfile.js?$$REVISION$$"&gt;&lt;/script&gt; </code></pre> <p><hr></p> <p>Of course, there are always better solutions like <a href="http://blog.greenfelt.net/2009/09/01/caching-javascript-safely/" rel="nofollow">this one</a>.</p> http://stackoverflow.com/questions/1327644/problem-with-vector-of-objects-pointers-implementing-composite-design-pattern/1327774#1327774 3 Answer by Huppie for Problem with vector of objects/pointers (Implementing composite design pattern) Huppie 2009-08-25T11:48:38Z 2009-08-25T11:48:38Z <p><a href="http://msdn.microsoft.com/en-us/library/741a5f2d%28VS.80%29.aspx" rel="nofollow">mem_fun_ref()</a> calls a member on a reference object, <a href="http://msdn.microsoft.com/en-us/library/wtc0dy7y.aspx" rel="nofollow">mem_fun()</a> calls a method through a pointer.</p> <p>Therefore you will need to use mem_fun() like so:<br /> <strong>textbody.cpp</strong></p> <pre><code>void TextBody::print() { if (container.size() == 0) return; for_each(container.begin(), container.end(),mem_fun(&amp;DocumentComponent::print)); } </code></pre> http://stackoverflow.com/questions/1327352/mvc-and-model-collection/1327383#1327383 0 Answer by Huppie for MVC and Model collection Huppie 2009-08-25T10:28:35Z 2009-08-25T10:28:35Z <p>How about keeping the list in the Model but the Index of the currently viewed item in the Controller. In sequence the controller would ask the Model how many CityData objects are available, then get the first CityData object and let the View show the object. The Controller can then handle requests from the user to view other CityData objects, getting them from the Model and in turn letting the View display them.</p> http://stackoverflow.com/questions/1326510/c-rounding-of-numbers-away-from-zero/1326543#1326543 1 Answer by Huppie for c++ rounding of numbers away from zero Huppie 2009-08-25T07:21:10Z 2009-08-25T08:02:30Z <p>There is a nice article about a similar problem on <a href="http://www.cplusplus.com/forum/articles/3638/" rel="nofollow">CPlusPlus.com</a>. The easy solution to your problem should be something like this:</p> <pre><code>double customRound( double value ) const { return value &lt; 0 ? floor( value ) : ceil( value ); } </code></pre> <p>A better solution is the one mentioned in the article, which uses a template:</p> <pre><code>//-------------------------------------------------------------------------- // symmetric round up // Bias: away from zero template &lt;typename FloatType&gt; FloatType ceil0( const FloatType&amp; value ) { FloatType result = std::ceil( std::fabs( value ) ); return (value &lt; 0.0) ? -result : result; } </code></pre> http://stackoverflow.com/questions/43455/how-do-i-serialize-a-dom-to-xml-text-using-javascript-in-a-cross-browser-way/43468#43468 6 Answer by Huppie for How do I serialize a DOM to XML text, using JavaScript, in a cross browser way? Huppie 2008-09-04T10:42:02Z 2009-08-15T12:39:41Z <p>You can use doc.xml in internet exlporer.</p> <p>You'll get something like this:</p> <pre><code>function xml2Str(xmlNode) { try { // Gecko- and Webkit-based browsers (Firefox, Chrome), Opera. return (new XMLSerializer()).serializeToString(xmlNode); } catch (e) { try { // Internet Explorer. return xmlNode.xml; } catch (e) { //Other browsers without XML Serializer alert('Xmlserializer not supported'); } } return false; } </code></pre> <p>Found it <a href="http://www.webdeveloper.com/forum/showthread.php?t=187378" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1276313/looking-for-svn-and-bug-tracker-recommendations/1276451#1276451 0 Answer by Huppie for Looking for SVN and bug-tracker recommendations Huppie 2009-08-14T07:11:45Z 2009-08-14T07:11:45Z <p>Depending on your exact needs I would recommend the following:</p> <p><strong>Subversion Client</strong><br /> Either <a href="http://tortoisesvn.tigris.org/" rel="nofollow">Tortoise SVN</a>, which integrates nicely with Windows Explorer or <a href="http://ankhsvn.open.collab.net/" rel="nofollow">Ankh SVN</a>, which integrates nicely with Visual Studio.</p> <p><strong>Bugtracker</strong><br /> Most bugtrackers advised in this topic are free and/or open-source but since your question does not state that as a requirement I would suggest <a href="http://www.atlassian.com/software/jira/" rel="nofollow">Atlassian Jira</a> or <a href="http://www.fogcreek.com/FogBUGZ/" rel="nofollow">FogBugz</a> since they are (imo) definately the best bugtrackers around.</p> http://stackoverflow.com/questions/1174448/jquery-animate-problems/1225929#1225929 0 Answer by Huppie for jQuery animate problems Huppie 2009-08-04T06:22:38Z 2009-08-04T06:22:38Z <p>As for the second question:</p> <p>If you think the default animation classes from JQuery are not properly working you could try <a href="http://www.berniecode.com/writing/animator.html" rel="nofollow">Bernie's Better Animation Class</a>. I have some good experiences with that library.</p> http://stackoverflow.com/questions/1185448/php-session-data-not-being-stored/1225873#1225873 1 Answer by Huppie for PHP Session Data Not Being Stored Huppie 2009-08-04T05:59:05Z 2009-08-04T06:14:00Z <p>First of all: What version of PHP are you hosting on?</p> <p>In PHP versions &lt; 5.3.0 <a href="http://www.php.net/session%5Fstart" rel="nofollow">session_start()</a> will always return TRUE, even if starting the session fails. (See the <a href="http://www.php.net/session%5Fstart#function.session-start.changelog" rel="nofollow">changelog</a>.)</p> <p><hr /></p> <p>Second: Have you tried</p> <pre><code>require_once("header.php"); </code></pre> <p><hr /></p> <p>Third: You should isolate the problem. Try the following</p> <ul> <li><p>Create a new file called session_test.php containing:</p> <p> <pre><code>if( isset($SESSION['garbage']) &amp;&amp; !empty($SESSION['garbage']) ) { echo 'Session data: ' . $SESSION['garbage']; } else { $SESSION['garbage'] = 'I like cake'; echo 'Session data written'; } </code></pre> <p>?></p></li> <li><p>Go to http://:/session_test.php in a browser</p></li> <li>What happens if you refresh the page? (A.k.a: Do your sessions work now?)</li> </ul> <p>This will make sure the problem is in the php/apache|IIS combination and not in all the other code.</p> http://stackoverflow.com/questions/16167/good-refactoring-support-for-c 6 Good refactoring support for C++ Huppie 2008-08-19T13:39:29Z 2009-07-31T00:46:51Z <p>The Visual Studio refactoring support for C# is quite good nowadays (though not half as good as some Java IDE's I've seen already) but I'm really missing C++ support.</p> <p>I have seen <a href="http://www.devexpress.com/Products/Visual_Studio_Add-in/RefactorCPP/index.xml" rel="nofollow">Refactor!</a> and am currently trying it out, but maybe one of you guys know a better tool or plugin? <hr> I've been working with <a href="http://www.wholetomato.com/" rel="nofollow">Visual Assist X</a> now for a week or two and got totally addicted. Thanks for the tip, I'll try to convince my boss to get me a license at work too. <hr> I've been bughunting for a few days since Visual Assist X kept messing up my Visual Studio after a few specific refactorings, It took me (and customer support) a week to hunt down but let's say for now that Visual Assist X is not a good combination with <a href="http://bluemars.org/clipx/" rel="nofollow">ClipX</a>.</p> http://stackoverflow.com/questions/1178475/looking-for-a-free-java-ide/1178476#1178476 33 Answer by Huppie for looking for a free java ide Huppie 2009-07-24T15:19:11Z 2009-07-24T15:36:35Z <p>You should try <a href="http://www.eclipse.org" rel="nofollow">Eclipse</a> or <a href="http://www.netbeans.org/" rel="nofollow">Netbeans</a> they both have the features you mentioned and both work very well.</p> http://stackoverflow.com/questions/1085584/how-do-i-programatically-retrieve-the-actual-path-to-program-files-folder/1085602#1085602 5 Answer by Huppie for How do I programatically retrieve the actual path to "Program Files" folder? Huppie 2009-07-06T05:57:41Z 2009-07-06T05:57:41Z <p>You would use <a href="http://msdn.microsoft.com/en-us/library/14tx8hby.aspx" rel="nofollow">GetFolderPath</a> in the <a href="http://msdn.microsoft.com/en-us/library/system.environment.aspx" rel="nofollow">Environment</a> class.</p> <pre><code>try { Environment.GetFolderPath( Environment.SpecialFolder.ProgramFiles ) catch( ArgumentException ex ) { Console.Out.WriteLine( ex.StackTrace ); } </code></pre> http://stackoverflow.com/questions/1068508/validation-of-email-addresses-asp-net/1068781#1068781 -1 Answer by Huppie for Validation of email addresses (ASP.NET) Huppie 2009-07-01T12:04:12Z 2009-07-01T19:03:01Z <p>Patricks' answer seems pretty well worked out but has a few flaws. </p> <ul> <li>You do want to group parts of the regex but don't want to capture them. Therefore you'll need to use non-capturing parenthesis.</li> <li>The alternation is partly wrong.</li> <li>It does not test if this was part of the string or the entire string</li> <li>It uses <a href="http://msdn.microsoft.com/en-us/library/twcw2f1c.aspx" rel="nofollow">Regex.Match</a> instead of <a href="http://msdn.microsoft.com/en-us/library/3y21t6y4.aspx" rel="nofollow">Regex.IsMatch</a>.</li> </ul> <p>A better solution in C# would be:</p> <pre><code>string emailAddress = "someone@home.co.uk"; if (Regex.IsMatch(emailAddress, @"^[A-Z0-9._%+-]+@home(?:\.co\.uk|(?:group)?\.com)$", RegexOptions.IgnoreCase)) { // email address is valid } </code></pre> <p>Of course to be completely sure that all email addresses pass you can use a more thorough expression:</p> <pre><code>string emailAddress = "someone@home.co.uk"; if (Regex.IsMatch(emailAddress, @"^[a-z0-9!#$%&amp;'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&amp;'*+/=?^_`{|}~-]+)*@home(?:\.co\.uk|(?:group)?\.com)$", RegexOptions.IgnoreCase)) { // email address is valid } </code></pre> http://stackoverflow.com/questions/1068328/how-to-search-word-inside-single-line-using-regular-expression/1068345#1068345 0 Answer by Huppie for How to search word inside single line using regular expression Huppie 2009-07-01T10:17:31Z 2009-07-01T10:17:31Z <p>How about using word boundaries?</p> <p>In Visual Studio:</p> <pre><code>&lt;pat&gt; </code></pre> <p>Re-reading your question you'll only want the 'pat' inside a string so</p> <pre><code>"[^"]*&lt;pat&gt;[^"]*" </code></pre> <p>is probably a better expression.</p> http://stackoverflow.com/questions/1033506/sed-to-replace-random-site-urls-in-ifrrame/1033592#1033592 1 Answer by Huppie for sed to replace random site urls in ifrrame Huppie 2009-06-23T16:08:30Z 2009-06-23T16:08:30Z <p>The question is not very clear but from what I understand you want to remove all iframes with the style="visibility:hidden" from the file.</p> <p>Something like this should work for you:</p> <pre><code>sed -i 's%&lt;iframe[^&gt;]+style="visibility: hidden"&gt;&lt;/iframe&gt;%%g' file </code></pre> <p>...or a bit more specific:</p> <pre><code>sed -i 's%&lt;iframe src="[^"]+" width=[a-z0-9%]+ height=[a-z0-9%]+ style="visibility: hidden"&gt;&lt;/iframe&gt;%%g file </code></pre> http://stackoverflow.com/questions/1033229/regular-expression-fs00000/1033327#1033327 6 Answer by Huppie for Regular Expression FS00000 Huppie 2009-06-23T15:32:11Z 2009-06-23T15:43:35Z <p>If the exact word should be matched don't forget word boundaries:</p> <pre><code>\bFS\d{5}\b </code></pre> <p>Depending on the language chosen the <a href="http://www.regular-expressions.info/wordboundaries.html" rel="nofollow">syntax for a word boundary might differ</a>.</p> http://stackoverflow.com/questions/479919/searching-fast-through-a-sorted-list-of-strings-in-c 0 Searching fast through a sorted list of strings in C++ Huppie 2009-01-26T14:16:42Z 2009-06-06T20:29:38Z <p>I have a list of about a hundreds unique strings in C++, I need to check if a value exists in this list, but preferrably lightning fast.</p> <p>I am currenly using a hash_set with std::strings (since I could not get it to work with const char*) like so:</p> <pre><code>stdext::hash_set&lt;const std::string&gt; _items; _items.insert("LONG_NAME_A_WITH_SOMETHING"); _items.insert("LONG_NAME_A_WITH_SOMETHING_ELSE"); _items.insert("SHORTER_NAME"); _items.insert("SHORTER_NAME_SPECIAL"); stdext::hash_set&lt;const std::string&gt;::const_iterator it = _items.find( "SHORTER_NAME" ) ); if( it != _items.end() ) { std::cout &lt;&lt; "item exists" &lt;&lt; std::endl; } </code></pre> <p>Does anybody else have a good idea for a faster search method without building a complete hashtable myself?</p> <p><hr /></p> <p>The list is a fixed list of strings which will not change. It contains a list of names of elements which are affected by a certain bug and should be repaired on-the-fly when opened with a newer version.</p> <p>I've built hashtables before using Aho-Corasick but I'm not really willing to add too much complexity.</p> <p><hr /></p> <p>I was amazed by the number of answers. I ended up testing a few methods for their performance and ended up using a combination of kirkus and Rob K.'s answers. I had tried a binary search before but I guess I had a small bug implementing it (how hard can it be...).</p> <p>The results where shocking... I thought I had a fast implementation using a hash_set... well, ends out I did not. Here's some statistics (and the eventual code):</p> <blockquote> <p><strong>Random lookup of 5 existing keys and 1 non-existant key, 50.000 times</strong></p> <p>My original algorithm took on average <strong>18,62</strong> seconds<br /> A lineair search took on average <strong>2,49</strong> seconds<br /> A binary search took on average <strong>0,92</strong> seconds.<br /> A search using a perfect hashtable generated by gperf took on average <strong>0,51</strong> seconds.</p> </blockquote> <p>Here's the code I use now:</p> <pre><code>bool searchWithBinaryLookup(const std::string&amp; strKey) { static const char arrItems[][NUM_ITEMS] = { /* list of items */ }; /* Binary lookup */ int low, mid, high; low = 0; high = NUM_ITEMS; while( low &lt; high ) { mid = (low + high) / 2; if(arrAffectedSymbols[mid] &gt; strKey) { high = mid - 1; } else if(arrAffectedSymbols[mid] &lt; strKey) { low = mid + 1; } else { return true; } } return false; } </code></pre> <p>*NOTE: This is Microsoft VC++ so I'm not using the std::hash_set from SGI.*</p> <p><hr /></p> <p>I did some tests this morning using gperf as <a href="http://stackoverflow.com/users/10958/vardhandotnet">VardhanDotNet</a> suggested and this is quite a bit faster indeed.</p> http://stackoverflow.com/questions/1879018/regex-for-capturing-digits-and-digit-ranges/1879206#1879206 Comment by Huppie on regex for capturing digits and digit ranges Huppie 2009-12-10T07:57:14Z 2009-12-10T07:57:14Z For a more generic approach you could use 'dash punctuation': \p{Pd} http://stackoverflow.com/questions/1824403/asp-net-regular-expression-validator-client-side-script-error Comment by Huppie on asp.net regular expression validator client side script error Huppie 2009-12-01T07:55:05Z 2009-12-01T07:55:05Z I think it is because at the client-side Regex will be implemented in JavaScript, thus the Regex should comply with the JavaScript Regex Flavour. JavaScript does not support named-captures so the Regex should be simplified to &gt;(?:([^&lt;]*)) http://stackoverflow.com/questions/1807194/regular-expression-tools/1807227#1807227 Comment by Huppie on Regular Expression Tools Huppie 2009-11-27T07:29:12Z 2009-11-27T07:29:12Z @1: RegexBuddy fixes that problem by simply supporting just about every possible Regular Expression flavour. http://stackoverflow.com/questions/1801859/would-you-hire-a-c-programmer-with-10-years-experience-for-a-c-role/1801886#1801886 Comment by Huppie on Would you hire a C++ programmer with 10 years experience for a C# role? Huppie 2009-11-26T06:57:21Z 2009-11-26T06:57:21Z @Brian: You can fix that ;-) http://stackoverflow.com/questions/1788939/jquery-find-and-wrap-textnode-with-some-element Comment by Huppie on jQuery : find and wrap textnode with some element Huppie 2009-11-24T09:46:06Z 2009-11-24T09:46:06Z Please articulate your intention more clearly. As you can see in the answer of Karim79 the specification isn't clear enough. http://stackoverflow.com/questions/1788939/jquery-find-and-wrap-textnode-with-some-element/1788969#1788969 Comment by Huppie on jQuery : find and wrap textnode with some element Huppie 2009-11-24T09:44:23Z 2009-11-24T09:44:23Z @Karim79 It also replaces 'Firebrand' with its lowercase variant. Although the OP does not specify this behaviour precisely (he actually 'specifies' that 'Firebrand' should not be replaced) I think it is safe to assume this behaviour to be incorrect. http://stackoverflow.com/questions/1788939/jquery-find-and-wrap-textnode-with-some-element/1788969#1788969 Comment by Huppie on jQuery : find and wrap textnode with some element Huppie 2009-11-24T09:37:15Z 2009-11-24T09:37:15Z That will also replace all existing &lt;span class=&quot;firebrand&quot;&gt;some text&lt;/span&gt; with &lt;span class=&quot;&lt;span class=&quot;firebrand&quot;&gt;firebrand&lt;/span&gt;&quot;&gt;some text&lt;/span&gt; http://stackoverflow.com/questions/1748849/getting-mother-board-serial-number-without-wmi-and-without-authentication Comment by Huppie on Getting mother board serial number without WMI and without authentication Huppie 2009-11-17T13:29:18Z 2009-11-17T13:29:18Z Something like this? <a href="http://www.pagetable.com/?p=27" rel="nofollow">pagetable.com/?p=27</a> http://stackoverflow.com/questions/1747001/make-an-input-typetext-only-numbers-are-input-able/1747017#1747017 Comment by Huppie on Make an <input type="text" /> only numbers are input-able? Huppie 2009-11-17T09:31:08Z 2009-11-17T09:31:08Z @Justin: The keyup doesn't always trigger (e.g. when using ALT+132 to produce &#228;), the blur() does. http://stackoverflow.com/questions/1747001/make-an-input-typetext-only-numbers-are-input-able/1747141#1747141 Comment by Huppie on Make an <input type="text" /> only numbers are input-able? Huppie 2009-11-17T07:34:32Z 2009-11-17T07:34:32Z @Soufiane: As said, the keydown() / keyCodes are very fragile. See <a href="http://unixpapa.com/js/key.html" rel="nofollow">unixpapa.com/js/key.html</a> for more information on the details. http://stackoverflow.com/questions/1747151/need-help-on-getarea-function Comment by Huppie on Need help on getArea() function Huppie 2009-11-17T07:31:20Z 2009-11-17T07:31:20Z So, what are the errors? http://stackoverflow.com/questions/1741894/zendjsonencode-messing-up-why Comment by Huppie on Zend_JSON:Encode messing up - why!?!??! Huppie 2009-11-16T13:09:55Z 2009-11-16T13:09:55Z Note to add: It seems like the php-error you have indicates this exact problem. http://stackoverflow.com/questions/1741894/zendjsonencode-messing-up-why Comment by Huppie on Zend_JSON:Encode messing up - why!?!??! Huppie 2009-11-16T13:08:03Z 2009-11-16T13:08:03Z I had the same problem with PHP's json_encode() some time ago. There where some serious bugs with UTF-8 in this function in older PHP versions (&lt; 5.2.7). What PHP version are you using? http://stackoverflow.com/questions/1729318/can-we-use-2-different-url-on-same-anchor-tag-for-javascript-disabled-and-enabled Comment by Huppie on Can we use 2 different url on same anchor tag for javascript disabled and enabled condition ? Huppie 2009-11-13T14:01:19Z 2009-11-13T14:01:19Z As for the question: Yes. But that probably wasn't the answer you where looking for. ;-) http://stackoverflow.com/questions/1706335/what-about-calling-aspx-in-php Comment by Huppie on what about calling aspx in php? Huppie 2009-11-10T08:16:32Z 2009-11-10T08:16:32Z So... ermm... what's the question?