Subject: | $RE{num}{real}{-sep => ","} does not match decimals starting with a dot. |
".75" =~ $RE {num} {real} {-sep => ","} matches "75", not ".75".
Without the {-sep => ","} clause, the bug is not triggered.
$RE {num} {decimal} {-sep => ","} fails in the same way.