I Won Steven Levithan's Regular Expression Contest!

Posted July 9, 2008 at 9:20 AM

Tags: ColdFusion

I know this is way late (still trying to catch up on my backlog of to-do items post-CFUNITED), but I am pretty exciting about winning Steven Levithan's Regular Expression contest. I submitted an XML document parser that parses the given XML file using a file input stream rather than an entire file read. It was meant to act in the same way that the SAX XML parser works (as an experiment, not as a replacement).

Thanks to Steven Levithan for putting on the contest and for being as big a proponent of regular expressions as I am!

Post Comment  |  Ask Ben  |  Permalink  |  Print Page




Learning ColdFusion 9 - ColdFusion 9 tutorials, samples, examples, demos

Reader Comments

Jul 9, 2008 at 10:03 AM // reply »
15 Comments

Congrats!


Jul 9, 2008 at 5:14 PM // reply »
55 Comments

Nice job, Ben!

For those of you who aren't aware of it, I was the inadvertent inspiration for Ben being the Master of Regexes that he is. You see...

One day I was "concentrating" on a hard problem -- the kind of hard problem that entire think tanks work on. You know: really hard.

Anyway, while I was deep in thought, I may have inadvertently slumped over onto my keyboard. Certainly, when Ben came in the room, this was the impression he must have had.

"Are you all right, Hal?" Ben asked.

"Hmm...What...Where am...Oh, Ben. Um, yes, of course. I was just working out the algorithm I'll need for this project." I then got up to splash my face with cold water and get some coffee. When I came back, Ben was staring at my screen.

"What is it, Ben?" I asked.

"It looks like you fell asleep. There's a bunch of random letters and characters on the screen," he said.

"Why, err...nonsense! Don't you know a regex when you see one?"

That began Ben's journey into regex mastery. The rest is history.

Oh, and the strange characters that started this off? Once Ben translated it, it turned out to be a remarkably clever proof of an algorithm for which I was nominated for a Nobel Prize in Programming.

But enough about me. Congrats, Ben.


Jul 9, 2008 at 6:00 PM // reply »
6,516 Comments

I would not have believed it if I were not there :) Had Hal's face not gotten all friendly with that keyboard, I dare not think where I would be today.


Jul 9, 2008 at 7:00 PM // reply »
8 Comments

its just amazing how tings work out out sometime, congrats Ben for your award any chance you plan on adding to the XML parsar ceated?


Jul 9, 2008 at 10:05 PM // reply »
2 Comments

Congrats Ben! :)

Goonie


Jul 10, 2008 at 2:31 PM // reply »
65 Comments

Props on owning that c-test.

While we're on the subject, for the developers that have perpetually re-queued "Learn regular expressions" to the bottom of their study queue, where would you recommend we start to become as expert and REGEX savvy as possible with as little an investment of time as possible (ideally about 3-4 minutes total) ?

Where did you start? What helped you the most (besides being a genius)?
Thanks!


Jul 10, 2008 at 3:02 PM // reply »
6,516 Comments

@David,

Here is a post that has a great tutorial:

http://www.bennadel.com/index.cfm?dax=blog:507.view

.. and here is a tutorial that I wrote for my developers when I was at Nylon Technology:

http://www.bennadel.com/index.cfm?dax=blog:458.view

Just start out with simple ones and go from there. And the key that I always try to get across to people - don't worry about reading regular expression; they are very hard to read. Just worry about writing them.

Good luck!


Sep 4, 2009 at 1:28 PM // reply »
1 Comments

Hi,

Do you know of any tools/code that will read through a set of values and generate regular expressions? Thanks for any info.

I need some way to automatically score consistency across a set of database field values.

BH


Sep 6, 2009 at 10:41 AM // reply »
6,516 Comments

@Brian,

Can you explain a little bit more about what you mean? I am not sure that I fully understand what you are trying to do?


Post Comment  |  Ask Ben

Recent Blog Comments
Nov 22, 2009 at 4:30 AM
jQuery Live() Method And Event Bubbling
dasegtezr ... read »
Nov 22, 2009 at 4:03 AM
jQuery Live() Method And Event Bubbling
C_fieri ... read »
Nov 22, 2009 at 1:56 AM
Learning ColdFusion 9: Using CFQuery In CFScript Can Enable SQL Injection Attacks
Why adobe would give you script equivalent of cfquery is beyond me. I love cfquery tag because it helps me wriite clean sql, and get away from the horrible jdbc queries If I wanted to write javali ... read »
Nov 22, 2009 at 1:45 AM
Streaming Text Using ColdFusion's CFContent Tag And The Variable Attribute
The reason you would want to do this is to stream. Ack json/xml files to ria clients I used thus technique before because putting json in response stream causes debugging info to come thru As well a ... read »
Nov 21, 2009 at 6:47 PM
Hal Helms - Real World Object Oriented Development, Sarasota - Day Five
@charlie griefer, Thank you.. ... read »
Nov 21, 2009 at 5:15 PM
Using ColdFusion Structures To Remove Duplicate List Values
@Jose Galdamez, Oh heh yeah I didn't paste the whole code. I should have defined the vars -- my bad. It's fixed thou. Thanks. ... read »
Nov 21, 2009 at 4:49 PM
Styling The ColdFusion 8 WriteToBrowser CFImage Output
Great work yet again Ben! Whilst I didn't use this whole code, I copied some of your regex code for a similar problem with the lack of an alt attribute and unescaped ampersands in CFIMAGE for Railo 3 ... read »
Nov 21, 2009 at 1:13 PM
My First ColdFusion Builder Extension - Encrypting And Decrypting CFM / CFC Files
@Ben, Because I am pedantic, I just want to make sure that everyone knows there is absolutely no encryption going on. There is only encoding and obfuscation. The cfencode tool only obfuscates your C ... read »