in reply to Regex matching
This way, you use the $& variable to print out whatever was matched. With this implementation, any additional characters after 4 to 27 5-character blocks will be silently discarded, as will any characters before the UFOFH. You can prevent this (if you want) by rewriting the code as:$mailbox =~ m#UFOFH( [\d/]{5}){4,27}# && print $&;
to trap the beginning and end of the string. Don't forget to chomp() it though!$mailbox =~ m#^UFOFH( [\d/]{5}){4,27}$# && print $&;
|
---|