Math::TrulyRandom

2001-05-21 Thread Lee Goddard
Has anyone got Math::TrulyRandom to compile with Visual Studio? TIA lee ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users

Re: Math::TrulyRandom

2001-05-21 Thread Sisyphus
- Original Message - From: Lee Goddard [EMAIL PROTECTED] To: Perl_Users [EMAIL PROTECTED] Sent: Monday, May 21, 2001 8:15 PM Subject: Math::TrulyRandom Has anyone got Math::TrulyRandom to compile with Visual Studio? TIA lee I tried putting a couple of versions of 'time.h' into

rand / srand / RE: Math::TrulyRandom

2001-05-21 Thread Lee Goddard
Yeah, depressing isn't it?! Did you find a way of generating truly random numbers? Mine come out the same every time, which is useless tried the perldoc suggestion (-f srand) but makes no difference whatsoever Any ideas, anyone? tia lee -Original Message- From: [EMAIL

RE: parsing blackice csv file

2001-05-21 Thread Arthur Cohen
: : i would like to be able to read in a csv file and output it : into html. does anyone have a template type of a script that : could this that would be willing to share it? : It doesn't look like anyone else answered this question, so... CSV should just be a comma-separated-values

PERL EXIT CODE

2001-05-21 Thread Mike Rudolph
Can anyone point me to a Perl exit code table or reference? Running on a w2k machine. I have some EDI translation software that allows me to run commands and scripts. I have attempted to execute a 'hello world' script to write a file outside the folder which contains the script. After trying

RE: parsing blackice csv file

2001-05-21 Thread Peter Eisengrein
This is really easy to do. Assuming you want to put in an HTML table, or something, here's an example: open(FILE,file.csv) || die Can't open it. $!\n; open(OUT, file.html) || die Can't open output file. $!\n; print OUT HTMLHEAD/HEADBODYTABLE\n; foreach my $line(FILE) { chomp($line);

RE: parsing blackice csv file

2001-05-21 Thread Arthur Cohen
: my @line = split(/\,/,$line); Not necessarily that simple. There could be fields with commas and/or newlines embedded in them, contained within quotation marks. If the OP's data is that complex he may want to consider using the module to parse his data. If it's just simple data with