in reply to Input Formats
Here's a very simple script that does something like that:
I hope that will get you started!#!/usr/local/bin/perl -w use strict; my %data; while (<>) { next if /Header/; next if /Footer/; my($id, $name) = split ' ', $_; $data{$id} = $name; }
|
|---|