in reply to Re: Correct Regex for reading stock symbol?
in thread Correct Regex for reading stock symbol?

What are you doing with the 'untainted' data?


Dave

  • Comment on Re^2: Correct Regex for reading stock symbol?

Replies are listed 'Best First'.
Re^3: Correct Regex for reading stock symbol?
by Anonymous Monk on Jan 31, 2006 at 18:49 UTC
    I found out where the problem is. I'm combining the symbol with a date generated. The file is supposed to be a stock symbol chart I have stored on my local drive. So I'm using the following code to see if it exists or not:
    my $extx = ".jpg"; my $fx = "2006-01-05"; if( -f "D:/stock_charts/$symbol$fx$extx" ) { $filename = $fx; $com_hash{'num'} = "$filename"; last; } #so the filename should look like "AIDO.OB2006-01-05.jpg"
    I think it has something to do with the proper tainting also. I'm going to try turning taint mode off to see if it stops it from timing out.

    Thanks