Hi there,
I'm wondering if there's a way to differentiate a space and a tab in Perl. I have this data format:
02 Aug 10 14:22:00 12345 A Quick Brown Fox Jumps John Peter Doe
02 Aug 10 14:25:00 12345 Over The Lazy Dog John Peter Doe
13 Aug 10 08:03:25 00001 The Hare and the Turtle Jane Doe
I want to have an output like this, for the first row:
item(0) = 02 Aug 10 --> Date
item(1) = 14:22:00 --> Time
item(2) = 12345 --> Employee Number
item(3) = A Quick Brown Fox Jumps --> Title
item(4) = John Peter --> First Name
item(5) = Doe --> Last Name
Thanks in advance