Tucows OpenSRS Module

2009-09-15 Thread Mike Blezien
Hello, I'm trying to use the Net::OpenSRS module to post new domain registrations for the Tucows API. I've been attempting to grasp the method for posting a new domain registration but haven't been able to understand how this module works for posting to Tucows. I've looked at the module info p

Re: Ternary operator

2009-09-15 Thread Randal L. Schwartz
> "Tim" == Tim Bowden writes: Tim> Oh good, O'Reilly hasn't given up. Is there some uncertainty as to the Tim> success a future version might have? Or is it a question of the right Tim> resources being available and willing to undertake the task? Or has it Tim> been put on the backburner f

Re: regex question

2009-09-15 Thread Uri Guttman
> "GM" == Gregory Machin writes: GM> Thanks for the help .. knowing the anchor thing help me. if you not GM> sure what ur looking for or what it call you end up with the wrong GM> thing. did you read my post? if you had a clue about the digits starting at the beginning of the string, t

Re: regex question

2009-09-15 Thread Gregory Machin
Thanks for the help .. knowing the anchor thing help me. if you not sure what ur looking for or what it call you end up with the wrong thing. On Tue, Sep 15, 2009 at 10:21 AM, Tim Bowden wrote: > On Tue, 2009-09-15 at 10:10 +0200, Gregory Machin wrote: >> Any numbers, but only 3 digits in the str

Re: regex question

2009-09-15 Thread Tim Bowden
On Tue, 2009-09-15 at 10:10 +0200, Gregory Machin wrote: > Any numbers, but only 3 digits in the string. > > I'm filtering out local extention numbers from phone numbers > > Where in the log the extension is 104 and the phone number would be > something like PSTN0/2-0115070545. All the stuff I ha

Re: regex question

2009-09-15 Thread Gregory Machin
Any numbers, but only 3 digits in the string. I'm filtering out local extention numbers from phone numbers Where in the log the extension is 104 and the phone number would be something like PSTN0/2-0115070545. All the stuff I have tried have returned would return both the extension number and 3

RE: Giving away my code

2009-09-15 Thread David Christensen
Steve Bertrand wrote: > My project is a suite for Internet Service Provider management. > The company that employs me ... > I have never signed anything to say I ``can't'' give it away. First -- I'm an engineer, not a lawyer. If you want legal advice, hire an attorney. That said, knowing a litt

Re: regex question

2009-09-15 Thread Tim Bowden
On Tue, 2009-09-15 at 09:30 +0200, Gregory Machin wrote: > Hi > > I'm look for code example that will only select a string containing 3 > digits .. The string cant be less than 3 digit , can't be more than 3 > and can't contain any other characters. > > I have googled and found code that will fin

Re: regex question

2009-09-15 Thread Uri Guttman
> "GM" == Gregory Machin writes: GM> I'm look for code example that will only select a string containing 3 GM> digits .. The string cant be less than 3 digit , can't be more than 3 GM> and can't contain any other characters. that is called containing exactly three digits. you spent way

regex question

2009-09-15 Thread Gregory Machin
Hi I'm look for code example that will only select a string containing 3 digits .. The string cant be less than 3 digit , can't be more than 3 and can't contain any other characters. I have googled and found code that will find 3 consecutive digits within a string or at the beginning. Any ideas