vote up 2 vote down star
1

How do you put comments inside a Perl regular expression?

flag

2 Answers

vote up 8 vote down check

Use the /x modifier:

my $foo = "zombies are the bombies";
if ($foo =~ /
             zombie  # sorry pirates
            /x ) {
    print "urg. brains.\n";
}

Also see the first question in the perl6faq.

Also it wouldn't hurt to read all of perlre while you're at it.

link|flag
ie "use the /x modifier" – Jesse Rusak Mar 11 at 0:14
I should vote you down for beating me by <i>that</i> much, but I have to vote you up for the clever example. – Telemachus Mar 11 at 0:17
You can go ahead and vote me down. I cheated anyway. – Eric Johnson Mar 11 at 0:19
Cheated? Posted an empty answer, then filled it in, to get that low timestamp? I can't think of anything else that could be called cheating. – ysth Mar 11 at 0:31
1  
you should use { } for multiline for clarity IMO. – Kent Fredric Mar 12 at 9:53
show 4 more comments
vote up 9 vote down

Even without the /x modifier, you can enclose comments in (?# ... ):

my $foo = "zombies are the bombies";
if ( $foo =~ /zombie(?# sorry pirates)/ ) {
    print "urg. brains.\n";
}
link|flag
The one problem I have with this style is that it can be tough on the eyes. Spaces before or after (?# comment) matter unless you add the /x modifier, in which case, I'm back to the /x modifier anyhow. – Telemachus Mar 11 at 12:01

Your Answer

Get an OpenID
or

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