#!/usr/bin/env perl use 5.012; my @fields = qw( name description other_name etc ); ...
Perl On Method and database insertion
by j1n3l0,
September 19, 2010 23:22
And if you have a recent pe...
#!/usr/bin/env perl use 5.012; my @fields = qw( name description other_name etc ); ...
Perl On Method and database insertion
by j1n3l0,
September 19, 2010 23:21
And if you have a recent pe...
#!/usr/bin/env perl use 5.012; my @fields = qw( name description other_name etc ); ...
Perl On Method and database insertion
by j1n3l0,
September 19, 2010 23:20
And if you have a recent pe...
#!/usr/bin/env perl use 5.012; my @fields = qw( name description other_name etc ); ...
Perl On Method and database insertion
by j1n3l0,
September 19, 2010 23:17
And if you have a recent pe...
#!/usr/bin/env perl use strict; use warnings FATAL => 'all'; ...
Perl On Method and database insertion
by j1n3l0,
September 19, 2010 22:19
I'd advice the use of stric...
aaaa1111
Perl On Take Last modified file in ...
by bruce,
August 10, 2010 09:02
hi what compilator do you u...
use strict; use warnings; use 5.010; ...
Perl On Restructuring Perl Sitemap ...
by draegtun,
March 15, 2010 10:34
Have a look at the Perl5 wi...
C:\Documents and Settings\Santa\Mis documentos\Smtp>perl scan.pl
sub parse_decimal {
my $input = shift;
my $output = parse_grouping($input, ",", "."); # parse as 12,345,678.90
...
Perl On Handling both dots and comm...
by Neil Ostrove,
January 25, 2010 16:35
Natuarally I messed up the ...
use strict; use warnings; use Test::More; ...
Perl On Handling both dots and comm...
by Neil Ostrove,
January 25, 2010 16:28
This gets rid the duplicate...
my $end = do {
my $month_ago = DateTime->now->subtract( months => 1 );
sprintf '%02d%02d', substr( $month_ago->year, -2 ), $month_ago->month;
...
File.open('/usr/local/teste/xml-cvs/ssp.xml').readlines.join.to_s.scan(/\>(.*)\</).uniq.sort.each {|dados| puts "#{dados};#{ File.open('/usr/local/teste/xml-cvs/ssp.xml').readlines.join.to_s.scan(/\>(.*)\</).count(dados)}"}
Perl On Perl one-liner to extract x...
by Antonio Pires de Castro Júnior,
December 29, 2009 17:58
Uma única linha em RUBY pa...
Perl On Processing files by date.
by trirnoth,
December 04, 2009 16:41
I have no idea why I didn't...
@a{<>}.=print keys%a
@a{<>}.=print keys%a
perl -we '@a{<>} = 1; print keys %a'
sub parse_decimal {
(my $input = shift) =~ s/[^\d,\.]//g;
my %o = (','=>'.','.'=>',');
...
Perl On Handling both dots and comm...
by giftnuss,
November 17, 2009 10:00
This is a useable implement...
Perl On Handling both dots and comm...
by Thomas Salvador,
November 16, 2009 20:20
hi.
here an idea on how to...
#!/usr/bin/perl use strict; ...
Perl On Handling both dots and comm...
by johntrammell.myopenid.com,
November 16, 2009 17:32
Definitely need to get rid ...
Thanks a lot for explaining...