$data = "A Tab Separated DataFile";
@fields=split(/\t/,$data);
print "$fields[0] , $fields[1], $fields[2] , $fields[3] ";
Urmil
-Original Message-
From: Scott, Joshua [mailto:[EMAIL PROTECTED]
Sent: Thursday, June 05, 2003 2:27 AM
To: beginners
Subject: Using defined ar
Hi Joshua
Joshua Scott wrote:
> Good evening,
>
> I'm having a hard time figuring out how to make a portion of my
> script work. Basically I'd like to split a specific field and use
> the names from an array as the scalar variable names for each
> field. Here is a snip of my code:
>
> # Begin Cod