Downloading an older version of perl

2013-01-29 Thread midhun
Hi guys, Where do I download an older version of active perl? Like 5.6 or 5.8 etc. Any download links will be really helpful Regards, Midhun

Re: Help on perl core dump

2013-01-29 Thread karthik sankaran
thanks for the reply, The perl code uses multi-processing functionality. A parent child functionality where the parent invokes as many childs needed and will terminate once the child completes its process. Yes I am seeing this core dumps in other servers also. I info I forgot to mention is I am u

Re: [FWD: Preprocessor for writing .SQL files for Oracle PLSQL and MS TSQL]

2013-01-29 Thread John SJ Anderson
On Tue, Jan 29, 2013 at 10:42 AM, wrote: > Hmmm OK, I forgot to mention the stored procedures in addition to the > DML and DDL. It looks like these DBIx::Class::Schema will for for DDL only. > Will they work for DML and stored procedures too? To the extent that what you mean by 'DML' is real

Re: Abbreviating ordinals only in the middle of an address

2013-01-29 Thread John SJ Anderson
On Jan 29, 2013, at 8:19 AM, Tushar N K Jain wrote: > I am not an expert in Perl, but wouldn't > > $test_data =~ s/north/N./gi; > > be sufficient? And what's the output of that when somebody lives on 'South Northgate Lane'? j. -- John SJ Anderson // geneh...@genehack.org -- To unsub

Re: Abbreviating ordinals only in the middle of an address

2013-01-29 Thread Angela Barone
On Jan 28, 2013, at 1:07 PM, Jim Gibson wrote: > This is known as a "negative lookahead assertion" and uses the (?!...) > construct: Thanks, everyone. I went with the negative lookahead that Jim mentioned. It works like a charm! Thanks again, Angela

Re: Abbreviating ordinals only in the middle of an address

2013-01-29 Thread Tushar N K Jain
I am not an expert in Perl, but wouldn't $test_data =~ s/north/N./gi; be sufficient? Regards, Tushar Jain On Mon, Jan 28, 2013 at 2:42 PM, Nathan Hilterbrand wrote: > On 01/28/2013 02:57 PM, Angela Barone wrote: > >> Hello, >> >> I'm trying to abbreviate ordinals(?) that occur only in

Re: Abbreviating ordinals only in the middle of an address

2013-01-29 Thread Nathan Hilterbrand
On 01/28/2013 02:57 PM, Angela Barone wrote: Hello, I'm trying to abbreviate ordinals(?) that occur only in the middle of an address and I'm having a problem. The line below works: $test_data =~ s/(\S) North (\S)/$1 N. $2/i; however, if the address is something like 901 North St., it

Re: [FWD: Preprocessor for writing .SQL files for Oracle PLSQL and MS TSQL]

2013-01-29 Thread John SJ Anderson
On Tue, Jan 29, 2013 at 7:44 AM, wrote: > Anyone have any suggestions to make it easier? > Can anyone help me get started? How about expressing your schema as a DBIx::Class::Schema[1] and then using DBIx::Class::Schema::Loader[2] to dump the different DDL dialects that you need? 1: https://met

[FWD: Preprocessor for writing .SQL files for Oracle PLSQL and MS TSQL]

2013-01-29 Thread siegfried
I'm trying to write some data definition code (DDL) and data manipulation (DML) SQL code and I want a single source code file for both Oracle PL/SQL and Microsoft's TSQL. Does anyone know of a pre-processor that would accept a source file like this -- begin file xyz.sql #if PLSQL #elseif TSQL

Re: trying to understand HTML::TreeBuilder::XPath

2013-01-29 Thread Rob Dixon
On 26/01/2013 20:44, Jeswin wrote: > Hi, > I'm trying to parse out the emails addresses from a webpage and I'm > using the HTML::TreeBuilder::XPath module. I don't really understand > XML and it's been a while since I worked with perl*. So far I mashed > up a code by looking through past examples o