loosecannon1
Programmer
I need to match the entire PATTERN to the entire EXP
i.e. Since the following expression is not an exact match, besides case, I don't want it to return true
$var1 = "abcd"
$var2 = "abcdf"
$var1 =~ /$var2/i
Any ideas on how I can accomplish this?
i.e. Since the following expression is not an exact match, besides case, I don't want it to return true
$var1 = "abcd"
$var2 = "abcdf"
$var1 =~ /$var2/i
Any ideas on how I can accomplish this?