I'm trying to use a regex to match a passed value. I'm trying to use an or
between the patterns, and it needs to be case insensitive.
I've tried it two ways, and it doesn't seem to work either way completely.
1st example:
if($ep =~ /^rglyc[12345] |^rglyd[235678] | ^rglyf3 | ^rglyg6 | ^rglyt5 |
ssed_plat)=shift;
`wsub \@ProfileManager:Exceptions \@Endpoint:$passed_ep`;
print AFTERLOG "$passed_ep cannot go to $passed_org - Check PR
Structure\n";
}
I tried:
`wsub \@ProfileManager:Staging \@Endpoint:$passed_ep` ||
exception_sub($passed_ep);
but that didn't work.
-Paul Farley
[EMAIL PR