vote up 11 vote down star
3

I love regex. I’ve used them with grep, Perl, Java, C, and a variety of others. I have Jeffery Friedl’s awesome book on them, and I studied their theory in college.

But for years I have been haunted by a famous regex joke:

Q: What did one regular expression say to the other?

A: .*

which I first saw on Slashdot, years ago.

Could someone conclusively explain this one to me? I have seen this joke time and time again, but despite fully understanding regular expressions I do not get the punch line.

flag

67% accept rate
2  
If you don't understand the joke, you don't understand Regex :p – TomatoSandwich Jul 3 at 2:27
7  
Actually, much like most obscure jokes... it's just... not funny, sorry. – Matthew Scharley Jul 3 at 2:30
1  
I don't get it. – JP Jul 3 at 2:39
3  
As Freud once said (or I once paraphrased), you can dissect humour, but much like a frog, it tends to die in the process – johnc Jul 3 at 2:39
6  
You're problems seems to be that you're looking for something intelligent in Slashdot comments... ;-) – MiffTheFox Jul 3 at 2:45
show 1 more comment

9 Answers

vote up 27 vote down check

Best translated as "Whatever!" (a common one-word occurrence in alleged "conversation" in certain age groups).

link|flag
Normally, explaining a joke sucks the fun out of it, but the qq/alleged "conversation"/ part made me ROTFLOL. My co-workers are looking at me funny. +++++ – Massa Jul 3 at 18:46
vote up 0 vote down

What about this:

Since the question specifically reference two regexes ('one' and the 'other') - you could interpret it this way:

Regex one=/Q. What did one regex say to the other?/ 
Regex other=/.*/

Which could (weakly I admit and still not funny) make the answer :

'What did one regex say to the other?' (since '.*' would match the first regex).

Which would make it a bit like the famous 'Who's on first base?' joke...

OR perhaps:

Regex one=/Q. What did one regex say to the other? A. .*/
Regex other=/Q. What did one regex say to the other? A. .*/

That is , apply the whole thing as a regex, run against itself..which would make it a infinite recursion joke for which there is a known tradition (especially in acronynms such as 'GNU')...

And a bit like those birthday cards which have 'how to confuse an idiot, turn over': which upon doing so reveals the same message....

The weakness in the above explanations is that even though the question is a valid regex, just not a very likely one: the first explanation doesn't even really use it as a regex (just a string) and then second explanation possibly suffers from ambigiouty as it contains a '?'...

link|flag
Also, the second example is cheating since the NLs have had to be chomped to make '.' work...(see earlier posting about Perl 'dot-matches-all'... – monojohnny Dec 10 at 11:27
vote up 0 vote down

it says... WHATEVER xD

since the * denotes any char alphanumeric in regex...

thanks for the funniest problem ever

link|flag
vote up 10 vote down

A typical exchange among adolescent regexes:

//          # What's up, dude?
/.*/        # Whatever!  (#)
! /./       # Not!
/[#!%$&*]+/ # Screw you!

(#) Borrowing Alex Martelli's fine answer.

link|flag
vote up 2 vote down

Note that usually the dot does not match everything. Think about newlines. In order to match those, you will need to enable “dot-matches-all” mode. In Perl and PCRE a /s modifier is available for that.

link|flag
5  
ahhh geeks, gotta love em! ;-) – Si Jul 3 at 6:51
vote up 1 vote down

Supposed to represent emoticons??

See: http://turing.cs.camosun.bc.ca/CompTech/index.php?topic=389.0

link|flag
1  
The people on that page are so clueless it's not even funny. – Paolo Bergantino Jul 3 at 2:33
I had looked at that page while researching this question, read one of the answers on that page, and thought for a fleeting moment that I was utterly crazy and had forgotten what "." matched. Sadly no, that page offered no answers either. – Kevin L. Jul 3 at 2:37
vote up 3 vote down

Maybe the joke is that regexes can't speak? I can't find anything else funny in there....

link|flag
vote up 10 vote down

Maybe it means, whatever one regular expression said to another, it would be matched by .*

link|flag
vote up 8 vote down

".*" matches everything. Other than that, I don't know what to tell you, it's not a very funny joke.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.