From 9bac6563967038c557fc5821ce426586e7b64026 Mon Sep 17 00:00:00 2001 From: Dima Kogan Date: Fri, 28 May 2010 13:19:01 -0700 Subject: [PATCH] the 'number' regexp is now case-insensitive --- feedGnuplot.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/feedGnuplot.pl b/feedGnuplot.pl index fc47a01..6f83e9e 100755 --- a/feedGnuplot.pl +++ b/feedGnuplot.pl @@ -313,7 +313,7 @@ sub mainThread { } # 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 $haveNewData;