Given:
$num = "3";
$num_list = "30 3 42 54";
How can I match the "3" and not the "30"? The number order will always be changing.
I tried:
if ($num_list =~ /(\s?$num\s+/)
Unfortunately it matches the "3" in "30". Not sure how to fix it. I know it's because of the ? means 0 or 1.
Your help is much appreciated!