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 ...
If you’ve programmed in Perl or any other language with built-in regular-expression capabilities, then you probably know how much easier regular expressions make text processing and pattern matching.
REGEX is a smarter version of Excel's FIND function, which works well for basic lookups. However, REGEX handles more complex ...
Regular expressions are a powerful tool for manipulating textual information, allowing you to perform the sophisticated processing you describe. Before I explain the solution, let's back up one step ...
I have to admit that I've never really understood regular expressions. But if there was any reason that I was going to learn to use them, it would be when doing searches in Visual Studio. For one ...
Even though it has somewhat of a checkered reputation, being able to wield it will save you a ton of time. There's a saying that I've heard numerous times about regular expressions (regex). It goes ...
A quick run down on how you can use regular expressions in your own programs to give you more power over searching and substituting text. Perl has long been an extremely popular choice for text ...
basically it needs to be a consistent 8 character date string with leading zeros for single digit values. I'm sure I can figure this out, but I'd like to do it with the least amount of code possible.
This article explains what regex (or regular expressions) is and how to get started using it with web crawlers, plus some interesting real-world use cases. One technology skill that is too-often ...