Hello All,
Been some time since I posted. A little rusty here.
I Need a regex that will match any string that ends with an "_D". I have this:
/code
foreach $entry (@combin) {
next if ($entry =~ /^*.?_D$/);
do something else;
}
Will this work?
Thanks,
Nick
If at first you don't succeed, don't try skydiving.
Been some time since I posted. A little rusty here.
I Need a regex that will match any string that ends with an "_D". I have this:
/code
foreach $entry (@combin) {
next if ($entry =~ /^*.?_D$/);
do something else;
}
Will this work?
Thanks,
Nick
If at first you don't succeed, don't try skydiving.