http://qs1969.pair.com?node_id=206235


in reply to Not a Number

You use regexes to check whether something is a valid number. The advantage of this is that you can easily adapt the regexes to whatever your interpretation of a number is. Here's an example out of the Cookbook:
use strict; my $number="3.141529"; print "$number is a C float!\n" if $number=~/^([+-]?)(?=\d|\.\d)\d*(\. +\d*)?([Ee]([+-]?\d+))?$/;
Chapter 2 of the Perl Cookbook provides numerous recipes for dealing with numbers in Perl. It comes highly recommended.

CU
Robartes-

Replies are listed 'Best First'.
Re: Re: Not a Number
by rasta (Hermit) on Oct 18, 2002 at 07:45 UTC
    NaN is an IEEE standard constant which stands for Not a Number. It is returned if an invalid operation exception occurs within an operation.

    For example, sqrt(-1) will return a number with a bit configuration that is recognized as NaN because this operation would result in an imaginary number.

    Therefore regexps don't help us in that issue.

    -- yuriy
      When I tried the sqrt(-1) example, I got the message
      Can't take sqrt of -1 at -e line 1.
      so it would seem that NaN is not used.