The people who attended my presentations at RMOUG Training Days 2010 asked several good questions. One question that was asked in the Groovy presentation that I really wish I had included a slide on ...
Java’s character and assorted string classes offer low-level support for pattern matching, but that support typically leads to complex code. For simpler and more efficient coding, Java offers the ...
I was involved in a recent discussion on the "best" way to remove a given parameter from a URL string. The conversation began with using string primitives to split and join the parameter, a method ...
Regular expressions come in handy for all varieties of text processing, but are often misunderstood--even by veteran developers. Here's a look at intermediate-level regular expressions and what they ...
Imagine you are looking for a name in a telephone directory, but you can't remember its exact spelling. You can spend ages searching through all the possible combinations, unless you have a tool that ...
Community driven content discussing all aspects of software development from DevOps to design patterns. The implementation of Java 8 Lambda expressions required an introduction to a number of new ...
You can do a lot more with regular expressions than you think. In this tutorial, you'll use it to convert a movie list into a CSV file for use in Excel. In Part 1 and Part 2 in this series about ...