Huppie

2,339
reputation
136 views

Registered User

name Huppie
member for 1 year
seen 1 hour ago
website
location NL
age 24
.
Dec
10
comment regex for capturing digits and digit ranges
For a more generic approach you could use 'dash punctuation': \p{Pd}
Dec
10
revised regex for capturing digits and digit ranges
added 5 characters in body
Dec
10
answered regex for capturing digits and digit ranges
Dec
6
awarded  Mortarboard
Dec
1
comment asp.net regular expression validator client side script error
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 >(?:([^<]*))
Nov
29
accepted Which SCM and Issue tracker to use for personal work?
Nov
28
answered Which SCM and Issue tracker to use for personal work?
Nov
27
comment Regular Expression Tools
@1: RegexBuddy fixes that problem by simply supporting just about every possible Regular Expression flavour.
Nov
27
revised Regular Expression Tools
added 140 characters in body
Nov
27
revised Regular Expression Tools
Added simple example
Nov
27
answered Regular Expression Tools
Nov
26
comment Would you hire a C++ programmer with 10 years experience for a C# role?
@Brian: You can fix that ;-)
Nov
26
revised Would you hire a C++ programmer with 10 years experience for a C# role?
fixed 'able to learn C#' line.
Nov
24
comment jQuery : find and wrap textnode with some element
Please articulate your intention more clearly. As you can see in the answer of Karim79 the specification isn't clear enough.
Nov
20
accepted How to HTTP POST from a link without JS
Nov
18
revised choosing a c++ unit testing tool/framework
Added article with extensive summary
Nov
17
comment Getting mother board serial number without WMI and without authentication
Something like this? pagetable.com/?p=27
Nov
17
revised jquery find link by rel
corrected title
Nov
17
awarded  Self-Learner
Nov
17
answered How to HTTP POST from a link without JS
Nov
17
comment Make an <input type=”text” /> only numbers are input-able?
@Justin: The keyup doesn't always trigger (e.g. when using ALT+132 to produce ä), the blur() does.
Nov
17
comment Make an <input type=”text” /> only numbers are input-able?
@Soufiane: As said, the keydown() / keyCodes are very fragile. See unixpapa.com/js/key.html for more information on the details.
Nov
17
comment Need help on getArea() function
So, what are the errors?
Nov
17
answered Make an <input type=”text” /> only numbers are input-able?
Nov
16
accepted Zend_JSON:Encode messing up - why!?!??!
Nov
16
revised Zend_JSON:Encode messing up - why!?!??!
Added hint to utf8 functionality
Nov
16
answered Zend_JSON:Encode messing up - why!?!??!
Nov
16
comment Zend_JSON:Encode messing up - why!?!??!
Note to add: It seems like the php-error you have indicates this exact problem.
Nov
16
comment Zend_JSON:Encode messing up - why!?!??!
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 (< 5.2.7). What PHP version are you using?
Nov
13
comment Can we use 2 different url on same anchor tag for javascript disabled and enabled condition ?
As for the question: Yes. But that probably wasn't the answer you where looking for. ;-)
Nov
13
answered Empty Post with JQuery Ajax Post
Nov
10
comment what about calling aspx in php?
So... ermm... what's the question?
Nov
9
answered Formatting a number with leading zeros in PHP
Nov
5
comment How can I accept mail from only one domain in smtp-gated?
Have a look at the guide to validating e-mail adresses @ regular-expressions.info regular-expressions.info/email.html
Nov
5
revised How can I accept mail from only one domain in smtp-gated?
Corrected \. mistake.
Nov
3
comment Automatically finding numbering patterns in filenames
As far as I know that is exactly what RegexMagic is for: regexmagic.com
Nov
3
revised C - What does the colon mean in struct declarations ?
removed 'c' tag
Oct
2
accepted startswith in javascript error
Sep
29
comment jQuery problem with firefox, isn’t it cross-browser compatiable?
Please clarify your question. What is this code supposed to do? What does it do in Safari, Opera, Internet Explorer and what does not work in Firefox?
Sep
18
comment Regex for matching a character, but not when it’s enclosed in quotes
@Jaco: 1) What language? 2) Isn't it way easier to split the string on ['"] first so you can check all uneven-numbered items in the array.
Sep
14
revised startswith in javascript error
Corrections based on coments and improved wording.
Sep
14
comment startswith in javascript error
@Grant: Well, I edited the post to use substr() instead of contains() because of the remark of Gumbo. If you're adding a method to the string prototype anyway, you might as well want the fastest solution.
Sep
11
comment startswith in javascript error
@Gumbo: You're right, substr() seems like a better solution.
Sep
11
revised startswith in javascript error
Replaced indexOf with substr()
Sep
11
revised startswith in javascript error
Added list of characters that should always be escaped
Sep
11
answered startswith in javascript error
Sep
10
accepted REG_EPAREN in php
Sep
9
revised choosing a c++ unit testing tool/framework
added 107 characters in body
Sep
7
revised REG_EPAREN in php
Clarified why $check should contain a Regular Expression.
Sep
7
answered REG_EPAREN in php