Talk:1277: Ayn Random

Explain xkcd: It's 'cause you're dumb.
Revision as of 10:54, 14 October 2013 by Jahvascriptmaniac (talk | contribs) (Comment about the missing slashes.)
Jump to: navigation, search

I think that should be /(\b[plurandy]+\b ?){2}/i.

173.66.108.213 05:12, 14 October 2013 (UTC)

I agree. I was confused for a while about what the b's were doing.

99.126.178.56 06:57, 14 October 2013 (UTC)

Maybe it's time to have an Ayn Rand category? --141.89.226.146 07:34, 14 October 2013 (UTC)

Can someone explain to the mathematically challenged *how* the list of names fits the regular expression? 141.2.75.23 09:14, 14 October 2013 (UTC)

Agreed, I would like to understand what the hell is going on with that. --Zagorath (talk) 09:20, 14 October 2013 (UTC)
How specific do you want it? Basically it matches two words consisting of the letters plurandy. The list of names is just a random selection of two part names that only consists of these letters. More specifically it matches: Two groups ({2}), each consisting of a word boundary (\b), followed by a non-empty sequence of the letters plurandy ([plurandy]+), followed by a word boundary (\b), finally followed by an optional space ( ?). Pmakholm (talk) 09:33, 14 October 2013 (UTC)
Also, the /'s on the end delimit the regex proper, and the `i` on the end denotes case insensitivity. --75.66.178.177 09:39, 14 October 2013 (UTC)

209.132.186.34 09:26, 14 October 2013 (UTC)

I do not think Randal would make such mistake, he would probably use \< \> anyway... unless, he wants us to think he did mistake, or that backslash was eliminated in html/javascript... thus poining ut to source code of the page... is there something interesting?

I skimmed over the source and didn't see anything unusual. The '\'s are absent from the source too. I think it's just that Randall (or a tool he's using) was so affraid of Bobby Tables that he stripped all backslashes from the alt text.