Scrum is simple. Doing Scrum is hard. Certified ScrumMaster Class in Arlington VA on 14-15 October In this highly interactive Certified ScrumMaster class,...
Pretty cool of Sun to donate a Sun Spot Development Kit to novajug. I think that if there are interested novajug members, it would be really great if we...
What's the regular expression that split a line into tokens if the separator is either a comma (,) or white space? And I'd like leading and trailing white...
Don't Miss Out! Here is your chance to attend an excellent Test Automation Training class led by Jared Richardson. Remember, register three (3) and get one...
String regex = "(,|\\s)+"; This works, but why not multiple regex's in steps to make the data more consistent? On Thu, Oct 2, 2008 at 1:06 PM, Lufkin, Brad...
Here's my answer (attached). Short answer: use Pattern and Matcher classes to remove leading and trailing spaces first. Then, with what remains, use a regex...
PS: INTERESTING SIDE NOTE... if you are on Windows CMD.EXE prompt, and you enter this command: type Main.out.txt vs notepad Main.out.txt you will see a visual...
... Maybe there's some library call to get the OS's line ending, much as you can do to get, for instance, the directory separator for paths? If not, you can...
I was just thinking about that last week when I added in a few other local groups. Is there a reason that one hasn't been created yet? David ... -- "A lie...
I'm sure it takes some time to build a good network but I can see the obvious benefits. I'm willing put some time in. NoVAJUG has about 2332 members and...
LinkedIn has recently added discussion forums to its group pages, which might be useful for novajug Sent via BlackBerry by AT&T ... From: "David Medinets"...
I wasn't aware of that but didn't intend to replace the existing NoVAJUG resources but to provide a mechanism for folks who think networking might be useful. ...
Kirk and All - I like the idea of a LinkedIn group. Kirk, I appreciate your initiative in suggesting it, and your willingness to invest the time to manage it....
Does anybody out there out expertise they are able to share? We are new to java development itself and adding J2EE/JBOSS/SEAM etc. to the mix just makes the...
Dave: The tool that does the adjustment of line endings is dos2unix and unix2dos. Its part of Cygwin, I believe. The system property to use probably is ...
Dennis - Please see below... ... Yes, there's a simple solution. Don't use Windows. ;) Sorry, couldn't resist. I'm not *that* much of a bigot. Well, maybe...
Andy, If you need the community to answer your questions, you will need to post your questions to the community itself; and you will have to weed through ...
Many of the mailing list members ask and receive answers all of the time. Feel free to ask any questions directly to the list. Thus you'll get the benefit of...
David, interesting pointer. I'll check StackOverflow out. Another option is Experts-Exchange. I've been a member of Experts-Exchange since about 1999. The site...
The next meeting information is posted. This will be held at Booz Allen Hamilton, so we need to actually register again. I created an event for it on...
Can anyone point me to a SQL parser, strongly preferably open source. I'm working on a migration project with a large number of queries that need to be...
There are a few SQL grammars available for Antlr: http://antlr.org/grammar/list I've used Antlr, it's not hard to use, lots of example to get you started. You...