Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #31984
| Newsgroups | comp.lang.python |
|---|---|
| Date | 2012-10-23 20:01 -0700 |
| Message-ID | <9ae3b43a-5c69-4232-a1cf-e2dd0c4ee2ca@googlegroups.com> (permalink) |
| Subject | Split single file into multiple files based on patterns |
| From | satyam <dirac.sat@gmail.com> |
I have a text file like this A1980JE39300007 2732 4195 12.527000 A1980JE39300007 3465 9720 22.000000 A1980JE39300007 1853 3278 12.500000 A1980JE39300007 2732 2732 187.500000 A1980JE39300007 19 4688 3.619000 A1980JE39300007 2995 9720 6.667000 A1980JE39300007 1603 9720 30.000000 A1980JE39300007 234 4195 42.416000 A1980JE39300007 2732 9720 18.000000 A1980KK18700010 130 303 4.985000 A1980KK18700010 7 4915 0.435000 A1980KK18700010 25 1620 1.722000 A1980KK18700010 25 186 0.654000 A1980KK18700010 50 130 3.199000 A1980KK18700010 186 3366 4.780000 A1980KK18700010 30 186 1.285000 A1980KK18700010 30 185 4.395000 A1980KK18700010 185 186 9.000000 A1980KK18700010 25 30 3.493000 I want to split the file and get multiple files like A1980JE39300007.txt and A1980KK18700010.txt, where each file will contain column2, 3 and 4. Thanks Satyam
Back to comp.lang.python | Previous | Next — Next in thread | Find similar | Unroll thread
Split single file into multiple files based on patterns satyam <dirac.sat@gmail.com> - 2012-10-23 20:01 -0700
Re: Split single file into multiple files based on patterns Jason Friedman <jason@powerpull.net> - 2012-10-23 21:36 -0600
Re: Split single file into multiple files based on patterns Jason Friedman <jason@powerpull.net> - 2012-10-23 21:43 -0600
Re: Split single file into multiple files based on patterns David Hutto <dwightdhutto@gmail.com> - 2012-10-24 01:24 -0400
Re: Split single file into multiple files based on patterns Demian Brecht <demianbrecht@gmail.com> - 2012-10-23 22:36 -0700
Re: Split single file into multiple files based on patterns Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2012-10-24 01:38 -0400
Re: Split single file into multiple files based on patterns Alain Ketterlin <alain@dpt-info.u-strasbg.fr> - 2012-10-24 07:46 +0200
Re: Split single file into multiple files based on patterns Mark Lawrence <breamoreboy@yahoo.co.uk> - 2012-10-24 07:13 +0100
Re: Split single file into multiple files based on patterns Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2012-10-24 07:52 +0000
Re: Split single file into multiple files based on patterns David Hutto <dwightdhutto@gmail.com> - 2012-10-24 04:02 -0400
Re: Split single file into multiple files based on patterns Peter Otten <__peter__@web.de> - 2012-10-24 10:17 +0200
csiph-web