in message <[email protected]>,
wrote [email protected] thusly...
>
> #  Matches a number, either positive (without '+' sign) or
> #  negative, which is either a whole number; or a real number
> #  ending with decimal point, or a real number with or without
> #  leading digits before the decimal point.
.                 ^
.                 ^  plural
> ^
> -?
> (
>   [0-9]  [.]? [0-9]*
>     |
>   [0-9]? [.]  [0-9]+
.        ^
.        ^  oops

Please change the immediately above regex portion to ...

  [0-9]* [.]  [0-9]+


  - parv

> )
> $

-- 

_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[email protected]"

Reply via email to