if ($tag =~ /^(50[0-2])|(53[0-2])$/) #### if ($tag =~ /^(50|53)[0-2]$/) #### if ($tag =~ /^5(0|3)[0-2]$/) # Note the parentheses ( ) are optional
## if ($tag =~ /^(50|53)[0-2]$/) ##
## if ($tag =~ /^5(0|3)[0-2]$/) # Note the parentheses ( ) are optional