Regular Expression Perl

#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";