the 'number' regexp is now case-insensitive

This commit is contained in:
Dima Kogan 2010-05-28 13:19:01 -07:00
parent 5444886acc
commit 9bac656396

View File

@ -313,7 +313,7 @@ sub mainThread {
} }
# regexp for a possibly floating point, possibly scientific notation number, fully captured # regexp for a possibly floating point, possibly scientific notation number, fully captured
my $numRE = qr/([-]?[0-9\.]+(?:e[-+]?[0-9]+)?)/o; my $numRE = qr/([-]?[0-9\.]+(?:e[-+]?[0-9]+)?)/io;
my $xlast; my $xlast;
my $haveNewData; my $haveNewData;