Re: Recursive routine

2008-06-17 Thread Nayab
On Jun 16, 9:33 pm, [EMAIL PROTECTED] (Rob Dixon) wrote: > Dermot wrote: > > Hi All, > > > I have data in a tab delimited format like this (tabs might be lost in > > the formatting of the email). > > > A456/959        ScHe > > M920/1123      He > > D123/999        ChFl > > D123/949        AnFl > >

Re: Recursive routine

2008-06-17 Thread Dermot
2008/6/16 Rob Dixon <[EMAIL PROTECTED]>: > Dermot wrote: >> Hi All, ...snip > I think you are better off using a simple global regex match Dermot. > >my @f =$str =~ /[A-Z][a-z]+/g; > > That finds all instances of a capital letter followed by one or more lower > case > letters. Well both varie

Re: Recursive routine

2008-06-16 Thread Rob Dixon
Dermot wrote: > Hi All, > > I have data in a tab delimited format like this (tabs might be lost in > the formatting of the email). > > A456/959ScHe > M920/1123 He > D123/999ChFl > D123/949AnFl > S520/257 Sp > T510/106 TePeHe > T540/110 Te > T875/1010

Re: Recursive routine

2008-06-16 Thread Jeff Peng
On Mon, Jun 16, 2008 at 11:52 PM, Dermot <[EMAIL PROTECTED]> wrote: > Hi All, > > I have data in a tab delimited format like this (tabs might be lost in > the formatting of the email). > > A456/959ScHe > M920/1123 He > D123/999ChFl > D123/949AnFl > S520/257Sp >