I'd like to try Perl...40 (5/20/2013 2:04:34 PM) I'd like to try Perl on Win 7 and according to this:
http://www.perl.org/get.html, it's a choice between ActiveState,
Strawberry and DWIM. Any advice on choosing between them would be welcome.
... peterxpercival(3)
Efficiency of s///e?141 (5/17/2013 3:36:48 AM) There's a sub in our code base which has something like
my $prevent_infinite_loop = 0;
while ($prevent_infinite_loop++ < 1000 && $text =~ /(complicated) (regular) (expression)/) {
... vario... tmcd1(189)
Perl regex - How to make my greedy quantifier greedier?41 (5/17/2013 3:46:00 AM) Hello,
I would like to try some string matching in perl as is in the title.
Let's create some testfiles for testing as follows.
$ mkdir -vp testing/dir.a/dir_b/dir-c; cd testing/dir.a/dir_b/dir-c; \
tou... cibalo(10)
is there a really simple cgi chat anywhere?13 (5/16/2013 8:23:20 PM) something that has like 1 file
adds what i chat to file
returns to broswser a box with top 30 lines of file
each line having time name and text fo chat
a input form for new chat text
and a submit b... visphatesjava(158)