Re: hard question (for me)

2002-02-13 Thread John W. Krahn
Vitor Carlos Flausino wrote: > > Can someone tell me what does this pattern means? > > ((NI)( NI| )? ?(\d{10}|\w{5})|(NI )?(QG|SR) ?(\d{9})) Match 'NI' followed by ' NI' or ' ' or '' followed by ' ' or '' followed by ten digits [0-9] or five word charcters [a-zA-Z0-9_] OR match 'NI ' or '' foll

Re: hard question (for me)

2002-02-13 Thread Kliment Ognianov
Vitor Carlos Flausino wrote: > Can someone tell me what does this pattern means? > > ((NI)( NI| )? ?(\d{10}|\w{5})|(NI )?(QG|SR) ?(\d{9})) > > > Who is $1, $2, $3 . > > thanks, > > -vcf.DTI.PGA > > /(.#1..)(..#2.) . (...#N..) / (...1...) => $1 ;(...2...) => $2(...N...) => $N -- T