Re: Problems opening files from CGI.pm program in Windows

2006-01-23 Thread Dr.Ruud
Mary Anderson: > open(LOG,">>.\guestbook.err")|| Simply try '>>./guestbook.err'. BTW, whitepace is cheap nowadays: my $logfile = './guestbook.err'; open( LOG, '>>', $logfile ) or die "Couldn't open log ($logfile) $!"; -- Grtz, Ruud -- To unsubscribe, e-mail: [EMAIL PROTECTED] Fo

Re: regex nth match of string, perl 5.8.5

2006-01-23 Thread Dr.Ruud
Chris Cosner schreef: > The beginning and ending markup are the same. So text would > become text in HTML. A single line can have more than one of > these italicized words, for example. If all in a single line: s~(.*?)~$1~g -- Grtz, Ruud -- To unsubscribe, e-mail: [EMAIL PROTECTED] For add