| bio | website | |
|---|---|---|
| location | ||
| age | 33 | |
| visits | member for | 3 years, 4 months |
| seen | yesterday | |
| stats | profile views | 314 |
|
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 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? |
|
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 |
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. |
|
Dec 6 |
comment |
SQL display status for records with null values I suggest reading about the different types of joins, particularly outer joins |
|
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 The question asks how to match "strings with exactly one space between each word and no trailing or leading spaces" not modify strings to meet those criteria. |
|
Nov 29 |
comment |
Filter out RSS items with description less than 3 characters using Yahoo Pipes @user1833760 I think the problem here is you are trying to filter on description in your pipe, but you are showing examples of the title in the screenshot. What I would do is move the regex filter to directly below your fetch feed and change it to "permit" on "item.title" rather than description and use ^.{3,}$ as your regex. See pipes.yahoo.com/pipes/… |
|
Oct 2 |
comment |
How do I speed up the drawing of markers in region mode of a Google Geochart? Thanks, the longitude/latitude is something I'm currently mocking up that I read on a topic on the Geochart forum. |
|
Sep 25 |
comment |
Failed to convert parameter value from a String to a DateTime Waht is the value of dt.Rows[i]["messagePostedDate"] when you receive the error? |
|
Aug 22 |
comment |
Using REGEX for email I have to disagree about this as a solution for a couple of reasons. First, this is a server side solution whereas the request was for a JavaScript solution. Secondly, from a lot of experience using the MailAddress object it is quite poor at allowing through it invalid email addresses as well as rejecting valid email addresses. If you are using System.Net.Mail to send the emails then it is a moot point but this is not a fool proof way of validating email addresses. |
|
Jul 30 |
comment |
extract text between xml comments in regex Your regular expression should work if you enable single line mode. |
|
Jun 12 |
comment |
Using NLog is there any way to log the name of the logger before the trailing dot? Thanks for this it got me on the right track and just need a few tweaks. I've added an edit that includes a fully compiling and working example. |
|
May 18 |
comment |
URL Rewrite Redirect doesn't quite work People will be more willing to help if you accept some of the previous answers on your questions to improve your accept rate |