How do you put comments inside a Perl regular expression?
|
feedback
|
|
Use the /x modifier:
Also see the first question in the perl6faq. Also it wouldn't hurt to read all of perlre while you're at it. | |||||||||||||
feedback
|
|
Even without the /x modifier, you can enclose comments in (?# ... ):
| |||
feedback
|