How do you put comments inside a Perl regular expression?
|
1
|
|
|
|
|
|
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. |
||||||||||||
|
|
|
Even without the /x modifier, you can enclose comments in (?# ... ):
|
||
|
