September 13th, 2008
After a previous post, covering the basics, we’ll go on with another geek-level look at regular expressions in Groovy. This time we will examine groups. Groups is about parsing, how to pick up parts of what a regular expression matches. We will also uncover a few more gotchas. Continue »
Topics:
Groovy lessons |
Comments Off on Groovy: Regular Expressions At Work
September 7th, 2008
The Groovy programming language simplifies many common tasks, including regular expressions. This post shows common uses made easy by Groovy. However, regular expressions in Groovy are not free from irregularities. This geek level post will explain one of them. Continue »
Topics:
Groovy lessons |
Comments Off on Groovy: Regular Expressions Basics
May 2nd, 2008
Is there anything groovy about office documents? How about getting document properties out of all kinds of MS Office documents without running an Office application? Add platform independence as a bonus. Did you say impossible?
Continue »
Topics:
Groovy lessons |
Comments Off on Office Documents the Groovy Way
May 2nd, 2008
Because of the strong ties between Java and Groovy, Groovy benefits from an enormous amount of Java utilities. This time we will take a brief look at what you can do with PDF documents. Continue »
Topics:
Groovy lessons |
Comments Off on PDF the Groovy Way
March 31st, 2008
The Groovy lessons reflect my first steps into Groovy territory. Groovy is a programming language that builds on Java and is quite seamlessly integrated with Java.
After learning to run simple stuff in the GroovyShell you naturally want to proceed to something resembling an application. Run it conveniently using the GroovyScriptEngine. Enter the following lines in a GroovyShell:
Continue »
Topics:
Groovy lessons |
Comments Off on The GroovyScriptEngine