| bio | website | |
|---|---|---|
| location | ||
| age | 33 | |
| visits | member for | 3 years, 4 months |
| seen | 2 days ago | |
| stats | profile views | 314 |
|
May 15 |
answered | How to extract results from asp.net regex.match? |
|
Apr 17 |
awarded | Notable Question |
|
Mar 1 |
awarded | Caucus |
|
Feb 20 |
comment |
Extract attribute value from html element Please post the input. |
|
Feb 15 |
comment |
How to display short date from DateTime field in label? I'm amazed you took the time to post rather than a simple Google of "short date DateTime" |
|
Jan 23 |
comment |
Need regex for danish phone number Good to see a former Sunderland goalkeeper delving into the world of web development. |
|
Jan 19 |
awarded | Yearling |
|
Jan 17 |
revised |
Visual Studio Regex with negation not working edited body |
|
Jan 17 |
answered | Visual Studio Regex with negation not working |
|
Jan 15 |
asked | How do I add a new user in a ScrewTurn wiki? |
|
Jan 11 |
comment |
Reg expression for as3, need to remove any new line or tab from tags This is a very simple scenario, what have you tried so far and what problems have you encountered? |
|
Jan 8 |
awarded | Investor |
|
Dec 13 |
comment |
regex for match inside a word The lookbehind/ahead seem overkill in this scenario, there is no real need for them. |
|
Dec 13 |
suggested | suggested edit on regex for match inside a word |
|
Dec 13 |
comment |
regex for match inside a word A word of warning on this one, reading between the lines as it isn't outlined in the question. This will match on _startOne End so if you don't want to match whitespace in the middle section change the . to something more appropriate, possibly \w. |
|
Dec 11 |
comment |
Opening web pages inside a div in asp.net @VipinNair If a site is preventing itself from being embedded in a iframe by using X-Frame-Options then the only other option is to make a HTTP request, parse the response and display the content yourself. However, this will break when the user clicks a link unless you handle all links yourself. Basically, you can't do what you want to do. |
|
Dec 11 |
comment |
Opening web pages inside a div in asp.net This is what iframes are for, what are the "security concerns" you have? |
|
Dec 10 |
comment |
How do I get the month and day with leading 0's in SQL? (e.g. 9 => 09) Where is this being used? Ideally this should be done in the presentation layer if at all possible, but I'm sure we've all done something similar at some point or other... |
|
Dec 10 |
comment |
How do I get the month and day with leading 0's in SQL? (e.g. 9 => 09) Out of curiosity, any particular reason for an NVARCHAR and the double zero? |
|
Dec 6 |
comment |
How do I write a regular expression that matches strings with exactly one space between each word and no trailing or leading spaces @luiges90 Changed the + to a * for the group quantifier to allow matching of a sole word, as I agree it may be needed. They are interchangeable depending on the requirements of the original poster. |