Re: extract text from a string

2006-11-09 Thread boris . smirnov
Thank you very much. I needed this kick. :) Rg, Boris Grant Edwards napĂ­sal(a): > On 2006-11-09, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hallo all, > > > > I have tried for a couple of hours to solve my problem with re but I > > have no success. > > > > I have a string containing: "+abc_

Re: extract text from a string

2006-11-09 Thread Grant Edwards
On 2006-11-09, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hallo all, > > I have tried for a couple of hours to solve my problem with re but I > have no success. > > I have a string containing: "+abc_cde.fgh_jkl\n" and what I need to > become is "abc_cde.fgh_jkl". Could anybody be so kind and w

Re: extract text from a string

2006-11-09 Thread Roberto Bonvallet
Jon Clements wrote: >> I have a string containing: "+abc_cde.fgh_jkl\n" and what I need to >> become is "abc_cde.fgh_jkl". Could anybody be so kind and write me a >> code of how to extract this text from that string? > > [...] Going by your example, it's tempting to suggest the best method > woul

Re: extract text from a string

2006-11-09 Thread Tim Williams
On 9 Nov 2006 07:45:25 -0800, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I have a string containing: "+abc_cde.fgh_jkl\n" and what I need to > become is "abc_cde.fgh_jkl". Could anybody be so kind and write me a > code of how to extract this text from that string? > for that particular str

Re: extract text from a string

2006-11-09 Thread Jon Clements
[EMAIL PROTECTED] wrote: > Hallo all, > > I have tried for a couple of hours to solve my problem with re but I > have no success. > > I have a string containing: "+abc_cde.fgh_jkl\n" and what I need to > become is "abc_cde.fgh_jkl". Could anybody be so kind and write me a > code of how to extrac