On Fri Mar 03 21:49:58 2006, guest wrote:
Show quoted text> $RE{num}{decimal}->matches('asd.asd') returns true
>
> In fact so long as I have a period (or a valid radix) in the "number",
> it seems to return true.
match() doesn't anchor the string. So, if there's a sub string that
matches the pattern, the match succeeds.
'asd.asd' (used) to match because '.' matched. However, this is fixed in
version 2011041601. But 'a1d.asd' will still match, because '1' matches.