Mega Code Archive

 
Categories / Perl / Regular Expression
 

The x Modifier

#The x modifier allows you to place comments within the regular expression $_="A to B\n"; /A  # Searching for A /x; print "Comments and spaces were removed and \$& is $&\n";