In article <F165JLtosJ3Ih7jtrSB000144b2 / hotmail.com>, Shannon Fang wrote: > Hi gurus, > > I used the following regexp to parse a text file: > > p=/.{4}((.{3})(.{6})(.{3})).{17}(.{16}).{13}(.).{33}(.{7}).{17}((.{3})(.{6})(.{3}))/ > > line="PFPT0YH100010 NUT-SPRG-EXPN 980101G A > 00001000010001WA100001050000000 OYH100010 > " > result=line.match(p) > p result >> > > [["0YH100010 ", "0YH", "100010", " ", "NUT-SPRG-EXPN ", "G", > "0000105", " > ", " ", " ", " "]] > > It seems that result is flattened. I expect result like this: > [[a,b,c], d,e,f,[g,h,i]] > > Could anyone tell me how can I achieve that? Thanks a lot! one thing you might consider as you seem to be using fixed width chunks maiching with . is to use String#unpack to dismember the string and its subcomponents. After that you could do some manyal packing. If this happens more than once then you might consider using a more sophisticated approach with some higher level tools as another poster has suggested. Unpack is usually easier to read (x means skip, a means non-null ASCII chars, if you wantes the spaces trimmed from the NUT_SPRG-EXPN field then you could use A rather than a.) E.g. result = line.unpack('x4 a12 x17 a16 x13 a x33 a7 x17 a12') [0, -1].each { |i| result[i] = result[i].unpack('a3a6a3') } It isn't hard to imagine writing a routine to let you use a modifed pack specifier to show some structure e.g. result = line.my_unpack('x4 [a3 a6 a3] x17 a16 x13 a x33 a7 x17 [a3 a6 a3]') Just a thought. Hope this helps, Mike -- mike / stok.co.uk | The "`Stok' disclaimers" apply. http://www.stok.co.uk/~mike/ | GPG PGP Key 1024D/059913DA mike / exegenix.com | Fingerprint 0570 71CD 6790 7C28 3D60 http://www.exegenix.com/ | 75D2 9EC4 C1C0 0599 13DA