dru145 has asked for the wisdom of the Perl Monks concerning the following question:
I want to be able to upload this file (via CGI.pm), parse it, and add it to a MySQL database (via DBI) which looks like this:+ 192.168.89.1 acmeorp.acme.com |___ 21 File Transfer Protocol [Control] * + 192.168.31.3 ftp.acme.com |___ 21 File Transfer Protocol [Control] |___ 220 ftp.acme.com FTP server ready... * + 192.168.33.19 acmeftp.acme.com |___ 21 File Transfer Protocol [Control] |___ 220-acme Secure FTP Server.. WarFTPd 1.71.02 ( +Feb 14 2000) Ready.. (C)opyright 1996 - 2000 by Jarle (jgaa) Aase +- all righ * + 192.168.29.21 orcweb.acme.com |___ 21 File Transfer Protocol [Control] |___ 220 sandbox FTP server (Version 1.1.214.7 Thu Aug + 10 09:57:38 GMT 2000) ready... * + 192.168.11.22 commerce.acme.com |___ 21 File Transfer Protocol [Control] |___ 220 commerce Microsoft FTP Service (Version 4.0). +.. * + 192.168.19.24 webapp.acme.com |___ 21 File Transfer Protocol [Control] |___ 220 WEBAPP1PRI Microsoft FTP Service (Version 5.0 +)...
I can handle the CGI, DBI, and Mysql portions, but I'm looking for help on how to parse this file for adding it to the database. Does Perl have a way to convert a .txt file to a .csv file? I looked at Text::CSV, but that only seems to parse a csv file, not create one.+-------------+-------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-------------+-------------+------+-----+---------+-------+ | ip | varchar(25) | YES | | NULL | | | svr_name | varchar(50) | YES | | NULL | | | port_num | varchar(6) | YES | | NULL | | | service | varchar(25) | YES | | NULL | | | description | varchar(50) | YES | | NULL | | +-------------+-------------+------+-----+---------+-------+
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Parse a .txt file for adding to a MySQL DB
by talexb (Chancellor) on Mar 12, 2002 at 17:35 UTC |