Re: regexp behin assertions ?

2008-07-03 Thread epanda
Sorry I hadn't enought time /(? Hi > > Where is a solution(s) of this thread? > > It's a litle bit weird ask for help, and don't offer a "posible solution". > > At least with a study case would be enough, don't mentioning further details. > > cheers -- To unsubscribe, e-mail: [EMAIL PROTECTED] F

Re: regexp behin assertions ?

2008-07-02 Thread obdulio santana
Hi Where is a solution(s) of this thread? It's a litle bit weird ask for help, and don't offer a "posible solution". At least with a study case would be enough, don't mentioning further details. cheers -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTEC

Re: regexp behin assertions ?

2008-07-02 Thread epanda
I can't it is confidential and I have found. Thanks a lot On 2 juil, 00:46, [EMAIL PROTECTED] (Gunnar Hjalmarsson) wrote: > epanda wrote: > > Gunnar Hjalmarsson wrote: > >> [ Please do not top-post! ] > > > > >> Maybe I'm dumb, but it's not clear to me what you want to achieve. It > >> might be

Re: regexp behin assertions ?

2008-07-01 Thread Gunnar Hjalmarsson
epanda wrote: Gunnar Hjalmarsson wrote: [ Please do not top-post! ] Maybe I'm dumb, but it's not clear to me what you want to achieve. It might be easier to help you if you showed us a few _examples_, both of strings that should match and strings that should not match. I can show you sam

Re: regexp behin assertions ?

2008-07-01 Thread epanda
I can show you sample on hotmail if you want. files can't be shown On 1 juil, 21:27, [EMAIL PROTECTED] (Gunnar Hjalmarsson) wrote: > [ Please do not top-post! ] > > > > epanda wrote: > > Gunnar Hjalmarsson wrote: > >> epanda wrote: > >>> I would like to identify in a pattern a number wich is not >

Re: regexp behin assertions ?

2008-07-01 Thread Gunnar Hjalmarsson
[ Please do not top-post! ] epanda wrote: Gunnar Hjalmarsson wrote: epanda wrote: I would like to identify in a pattern a number wich is not preceded by another numbera word or a ';' followed by ;number ~ ;\d+ I have tried this s/\d+(? You probably want t

Re: regexp behin assertions ?

2008-07-01 Thread epanda
In fact I would like my number is not preceded by aor a I have tried that but error : s/(? epanda wrote: > > I would like to identify in a pattern a number wich is not > > >         preceded by     another number    a word or a ';' > >         followed > > by       ;number > > ~      ;\d+ > >

Re: regexp behin assertions ?

2008-06-30 Thread Gunnar Hjalmarsson
epanda wrote: I would like to identify in a pattern a number wich is not preceded by another numbera word or a ';' followed by ;number ~ ;\d+ I have tried this s/\d+(? You probably want to reverse the order. /(?http://www.gunnar.cc/cgi-bin/contact.pl -

regexp behin assertions ?

2008-06-30 Thread epanda
Hi, I would like to identify in a pattern a number wich is not preceded by another numbera word or a ';' followed by ;number ~ ;\d+ I have tried this s/\d+(?http://learn.perl.org/